UnhandledExceptionEventArgs Class
Provides data for the event that is raised when there is an exception that is not handled in any application domain.
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() | UnhandledExceptionEventArgs(Object, Boolean) | Initializes a new instance of the UnhandledExceptionEventArgs class with the exception object and a common language runtime termination flag. |
| Name | Description | |
|---|---|---|
![]() | ExceptionObject | Gets the unhandled exception object. |
![]() | IsTerminating | Indicates whether the common language runtime is terminating. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
UnhandledExceptionEventArgs provides access to the exception object and a flag indicating whether the common language runtime is terminating. The UnhandledExceptionEventArgs is one of the parameters passed into UnhandledExceptionEventHandler for the AppDomain.UnhandledException event.
For more information about event handler delegates, see Handling and Raising Events.
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.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.


