Class GameUnhandledExceptionEventArgs
public class GameUnhandledExceptionEventArgs
- Inheritance
-
objectGameUnhandledExceptionEventArgs
Constructors
GameUnhandledExceptionEventArgs(object, bool)
Initializes a new instance of the GameUnhandledExceptionEventArgs class.
public GameUnhandledExceptionEventArgs(object exceptionObject, bool isTerminating)
Parameters
exceptionObject
objectThe exception object.
isTerminating
boolif set to
true
[is terminating].
Properties
ExceptionObject
Gets the unhandled exception object.
public object ExceptionObject { get; }
Property Value
- object
The unhandled exception object.
IsTerminating
Gets a value indicating whether the CLR is terminating.
public bool IsTerminating { get; }
Property Value
- bool
true
if CLR is terminating; otherwise,false
.