DispatcherUnhandledExceptionFilterEventArgs Class
Provides data for the Dispatcher UnhandledExceptionFilter event.
Assembly: WindowsBase (in WindowsBase.dll)
System::EventArgs
System.Windows.Threading::DispatcherEventArgs
System.Windows.Threading::DispatcherUnhandledExceptionFilterEventArgs
| Name | Description | |
|---|---|---|
![]() | Dispatcher | The Dispatcher associated with this event. (Inherited from DispatcherEventArgs.) |
![]() | Exception | Gets the exception that was raised when executing code by way of the dispatcher. |
![]() | RequestCatch | Gets or sets whether the exception should be caught and the event handlers called. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The UnhandledExceptionFilter event occurs when code executing by way of the Dispatcher throws an exception which is not handled.
The UnhandledExceptionFilter event provides a means to not raise the UnhandledException event. The UnhandledExceptionFilter event is raised first, and If RequestCatch on the DispatcherUnhandledExceptionFilterEventArgs is set to false, the UnhandledException event will not be raised.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

