Class SchedulerUnhandledExceptionEventArgs
Provides data for the UnhandledException event on IScheduler.
Inheritance
System.Object
SchedulerUnhandledExceptionEventArgs
Namespace: Reaqtive.Scheduler
Assembly: Reaqtive.Interfaces.dll
Syntax
public sealed class SchedulerUnhandledExceptionEventArgs : EventArgs
Constructors
SchedulerUnhandledExceptionEventArgs(IScheduler, Exception)
Creates a new scheduler unhandled exception event argument object using the specified scheduler and exception.
Declaration
public SchedulerUnhandledExceptionEventArgs(IScheduler scheduler, Exception exception)
Parameters
| Type | Name | Description |
|---|---|---|
| IScheduler | scheduler | Scheduler associated with this event. |
| System.Exception | exception | Exception that was raised when executing code on the scheduler. |
Properties
Exception
Gets the exception that was raised when executing code on the scheduler.
Declaration
public Exception Exception { get; }
Property Value
| Type | Description |
|---|---|
| System.Exception |
Handled
Gets or sets whether the exception event has been handled.
Declaration
public bool Handled { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
Scheduler
Gets the scheduler associated with this event.
Declaration
public IScheduler Scheduler { get; }
Property Value
| Type | Description |
|---|---|
| IScheduler |