Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

DispatcherUnhandledExceptionEventArgs Class

Definition

Namespace:
System.Windows.Threading
Assembly:
WindowsBase.dll

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.

Provides data for the DispatcherUnhandledException event.

public ref class DispatcherUnhandledExceptionEventArgs sealed : System::Windows::Threading::DispatcherEventArgs
public sealed class DispatcherUnhandledExceptionEventArgs : System.Windows.Threading.DispatcherEventArgs
type DispatcherUnhandledExceptionEventArgs = class
 inherit DispatcherEventArgs
Public NotInheritable Class DispatcherUnhandledExceptionEventArgs
Inherits DispatcherEventArgs
Inheritance
DispatcherUnhandledExceptionEventArgs

Remarks

The UnhandledException 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.

Properties

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.

Handled

Gets or sets whether the exception event has been handled.

Methods

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()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

See also


Feedback

Was this page helpful?