mscorlib(4.0.0.0) API with additions
|
Provides data for the event that is raised when there is an exception that is not handled in any application domain. More...
Public Member Functions | |
UnhandledExceptionEventArgs (object exception, bool isTerminating) | |
Initializes a new instance of the T:System.UnhandledExceptionEventArgs class with the exception object and a common language runtime termination flag. More... | |
![]() | |
EventArgs () | |
Initializes a new instance of the T:System.EventArgs class. More... | |
Properties | |
object | ExceptionObject [get] |
Gets the unhandled exception object. More... | |
bool | IsTerminating [get] |
Indicates whether the common language runtime is terminating. More... | |
Additional Inherited Members | |
![]() | |
static readonly EventArgs | Empty = new EventArgs() |
Provides a value to use with events that do not have event data. More... | |
Provides data for the event that is raised when there is an exception that is not handled in any application domain.
Definition at line 9 of file UnhandledExceptionEventArgs.cs.
System.UnhandledExceptionEventArgs.UnhandledExceptionEventArgs | ( | object | exception, |
bool | isTerminating | ||
) |
Initializes a new instance of the T:System.UnhandledExceptionEventArgs class with the exception object and a common language runtime termination flag.
exception | The exception that is not handled. |
isTerminating | true if the runtime is terminating; otherwise, false . |
Definition at line 42 of file UnhandledExceptionEventArgs.cs.
|
get |
Gets the unhandled exception object.
Definition at line 18 of file UnhandledExceptionEventArgs.cs.
|
get |
Indicates whether the common language runtime is terminating.
true
if the runtime is terminating; otherwise, false
.Definition at line 30 of file UnhandledExceptionEventArgs.cs.