Esempio n. 1
0
 private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
 {
     if (Debugger.IsAttached)
     {
         Debugger.Break();
     }
     ErrorReporting.ReportException(e.ExceptionObject, "UnhandledException");
     ErrorReporting.CheckForPreviousException(false);
     e.Handled = true;
 }
Esempio n. 2
0
 private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
 {
     ErrorReporting.ReportException(e.Exception, "NavigationFailed: " + e.Uri);
 }