BlinkIDDemo.App.Application_UnhandledException C# (CSharp) Method

Application_UnhandledException() private method

private Application_UnhandledException ( object sender, System.Windows.ApplicationUnhandledExceptionEventArgs e ) : void
sender object
e System.Windows.ApplicationUnhandledExceptionEventArgs
return void
        private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
        {
            if (Debugger.IsAttached)
            {
                // An unhandled exception has occurred; break into the debugger
                Debugger.Break();
            }
        }