Class UnhandledExceptionArgs
Arguments for an unhandled exception.
Inheritance
System.Object
UnhandledExceptionArgs
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class UnhandledExceptionArgs : object
Constructors
UnhandledExceptionArgs(Exception)
Initializes a new instance of the UnhandledExceptionArgs class.
Declaration
public UnhandledExceptionArgs(Exception exception)
Parameters
Type | Name | Description |
---|---|---|
Exception | exception | The exception. |
Properties
Exception
Gets the unhandled exception.
Declaration
public Exception Exception { get; }
Property Value
Type | Description |
---|---|
Exception |
Handled
Gets or sets whether the exception has been
appropriately handled. If set to true
,
then the exception will not be thrown.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |