UnhandledThreadPoolExceptionHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Unhandled Threadpool Exception event handler would be raised whenever an unhandled exception occurs in a threadpool used by the platform. If this delegate returns true then the exception is ignored, otherwise it is rethrown.
public delegate bool UnhandledThreadPoolExceptionHandler(Exception ^ ex, WaitCallback ^ method, System::Object ^ state);
public delegate bool UnhandledThreadPoolExceptionHandler(Exception ex, WaitCallback method, object state);
type UnhandledThreadPoolExceptionHandler = delegate of Exception * WaitCallback * obj -> bool
Public Delegate Function UnhandledThreadPoolExceptionHandler(ex As Exception, method As WaitCallback, state As Object) As Boolean
Parameters
- ex
- Exception
Unhandled exception thrown.
- method
- WaitCallback
This argument should be ignored.
- state
- Object
This argument should be ignored.