System.UnhandledExceptionEventArgs.UnhandledExceptionEventArgs C# (CSharp) Method

UnhandledExceptionEventArgs() public method

public UnhandledExceptionEventArgs ( Object exception, bool isTerminating ) : System
exception Object
isTerminating bool
return System
        public UnhandledExceptionEventArgs(Object exception, bool isTerminating) {
            _Exception = exception;
            _IsTerminating = isTerminating;
        }
        public Object ExceptionObject { 
UnhandledExceptionEventArgs