System.UnhandledExceptionEventArgs.UnhandledExceptionEventArgs C# (CSharp) Méthode

UnhandledExceptionEventArgs() public méthode

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