System.UnhandledExceptionEventArgs.UnhandledExceptionEventArgs C# (CSharp) Метод

UnhandledExceptionEventArgs() публичный Метод

public UnhandledExceptionEventArgs ( Object exception, bool isTerminating ) : System
exception Object
isTerminating bool
Результат System
        public UnhandledExceptionEventArgs(Object exception, bool isTerminating) {
            _Exception = exception;
            _IsTerminating = isTerminating;
        }
        public Object ExceptionObject { 
UnhandledExceptionEventArgs