ReportException() public static method

public static ReportException ( Exception x ) : void
x System.Exception
return void
Esempio n. 1
0
 void AppDomain_CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
 {
     Shell.ReportException(e.ExceptionObject as Exception);
 }
Esempio n. 2
0
 void App_DispatcherUnhandledException(object sender, DispatcherUnhandledExceptionEventArgs e)
 {
     Shell.ReportException(e.Exception);
     e.Handled = true;
 }
Esempio n. 3
0
 void DragDropExceptionHandler_UnhandledException(object sender, ThreadExceptionEventArgs e)
 {
     Shell.ReportException(e.Exception);
 }