Class UnhandledExceptionArgs
Arguments for an unhandled exception.
Inheritance
System.Object
UnhandledExceptionArgs
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: FM.LiveSwitch
Assembly: FM.LiveSwitch.dll
Syntax
public class UnhandledExceptionArgs
Constructors
UnhandledExceptionArgs(Exception)
Initializes a new instance of the UnhandledExceptionArgs class.
Declaration
public UnhandledExceptionArgs(Exception exception)
Parameters
Type | Name | Description |
---|---|---|
System.Exception | exception | The exception. |
Properties
Exception
Gets the unhandled exception.
Declaration
public Exception Exception { get; }
Property Value
Type | Description |
---|---|
System.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 |