Bugsense.WPF.BugSense.UnhandledException C# (CSharp) Method

UnhandledException() private static method

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