コード例 #1
0
ファイル: Main.cs プロジェクト: dimad77771-dev/Mobio.Mobile
 // 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);
     }
 }
コード例 #2
0
 static void MyApp_UnhandledExceptionHandler(object sender, RaiseThrowableEventArgs e)
 {
     UnhandledExceptionProccesing.LogUnhandledException(e.Exception);
 }
コード例 #3
0
ファイル: Main.cs プロジェクト: dimad77771-dev/Mobio.Mobile
 static void logUnhandledException(object sender, UnhandledExceptionEventArgs e)
 {
     //Utilities2.LogUnhandledException(e.ExceptionObject as Exception);
     UnhandledExceptionProccesing.LogUnhandledException(e.ExceptionObject as Exception);
 }