Beispiel #1
0
 // This is the main entry point of the application.
 static void Main(string[] args)
 {
     try
     {
         AppDomain.CurrentDomain.UnhandledException += logUnhandledException;
         UIApplication.Main(args, null, "AppDelegate");
     }
     catch (Exception ex)
     {
         //Utilities2.LogUnhandledException(ex);
         UnhandledExceptionProccesing.LogUnhandledException(ex);
     }
 }
Beispiel #2
0
 static void MyApp_UnhandledExceptionHandler(object sender, RaiseThrowableEventArgs e)
 {
     UnhandledExceptionProccesing.LogUnhandledException(e.Exception);
 }
Beispiel #3
0
 static void logUnhandledException(object sender, UnhandledExceptionEventArgs e)
 {
     //Utilities2.LogUnhandledException(e.ExceptionObject as Exception);
     UnhandledExceptionProccesing.LogUnhandledException(e.ExceptionObject as Exception);
 }