Class UnhandledManagedExceptionEventArgs
Additional information for unhandled managed exception events.
Inherited Members
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public class UnhandledManagedExceptionEventArgs : EventArgs
Constructors
UnhandledManagedExceptionEventArgs(Exception)
Constructor.
Declaration
public UnhandledManagedExceptionEventArgs(Exception exception)
Parameters
Type | Name | Description |
---|---|---|
Exception | exception | The exception. |
UnhandledManagedExceptionEventArgs(Exception, bool)
Declaration
public UnhandledManagedExceptionEventArgs(Exception exception, bool handled)
Parameters
Type | Name | Description |
---|---|---|
Exception | exception | |
bool | handled |
Properties
Exception
Gets the exception.
Declaration
public Exception Exception { get; }
Property Value
Type | Description |
---|---|
Exception | The exception. |
Handled
Gets a value indicating whether the handled.
Declaration
public bool Handled { get; }
Property Value
Type | Description |
---|---|
bool | True if handled, false if not. |