Eto.UnhandledExceptionEventArgs.UnhandledExceptionEventArgs C# (CSharp) Method

UnhandledExceptionEventArgs() public method

Initializes a new instance of the Eto.UnhandledExceptionEventArgs class.
public UnhandledExceptionEventArgs ( object exception, bool isTerminating ) : System
exception object The exception object.
isTerminating bool true if the application will terminate, otherwise false.
return System
		public UnhandledExceptionEventArgs(object exception, bool isTerminating)
		{
			ExceptionObject = exception;
			IsTerminating = isTerminating;
		}
UnhandledExceptionEventArgs