Bugsense.WPF.BugSense.UnhandledException C# (CSharp) 메소드

UnhandledException() 개인적인 정적인 메소드

private static UnhandledException ( object sender, UnhandledExceptionEventArgs e ) : void
sender object
e System.UnhandledExceptionEventArgs
리턴 void
        private static void UnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
            if (Debugger.IsAttached) return;
            SendException((Exception) e.ExceptionObject);
        }
    }