AuraPhotoViewer.App.DispatcherUnhandledExceptionHandler C# (CSharp) Method

DispatcherUnhandledExceptionHandler() private method

private DispatcherUnhandledExceptionHandler ( object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs dispatcherUnhandledExceptionEventArgs ) : void
sender object
dispatcherUnhandledExceptionEventArgs System.Windows.Threading.DispatcherUnhandledExceptionEventArgs
return void
        private void DispatcherUnhandledExceptionHandler(object sender, DispatcherUnhandledExceptionEventArgs dispatcherUnhandledExceptionEventArgs)
        {
            Log.Fatal("Dispatcher Unhandled Exception", dispatcherUnhandledExceptionEventArgs.Exception);
            dispatcherUnhandledExceptionEventArgs.Handled = true;
        }