Show / Hide Table of Contents

Class UnhandledManagedExceptionEventArgs

Additional information for unhandled managed exception events.

Inheritance
object
EventArgs
UnhandledManagedExceptionEventArgs
Inherited Members
EventArgs.Empty
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
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.

In this article
Back to top