Class UnhandledManagedExceptionEventArgs
Additional information for unhandled managed exception events.
Inheritance
Object
EventArgs
UnhandledManagedExceptionEventArgs
Inherited Members
EventArgs.Empty
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
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, Boolean)
Declaration
public UnhandledManagedExceptionEventArgs(Exception exception, bool handled)
Parameters
Type | Name | Description |
---|---|---|
Exception | exception | |
Boolean | 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 |
---|---|
Boolean | True if handled, false if not. |