DispatcherUnhandledExceptionEventArgs Class
Definition
Provides data for the Avalonia.Threading.Dispatcher.UnhandledException event.
public class DispatcherUnhandledExceptionEventArgs
Properties
| Name | Description |
|---|---|
| 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. |
| Dispatcher | The Dispatcher associated with this event. Inherited from DispatcherEventArgs. |
Exception Property
Gets the exception that was raised when executing code by way of the dispatcher.
public Exception Exception { get; set; }
Handled Property
Gets or sets whether the exception event has been handled.
public bool Handled { get; set; }