SendRemainingActivity() static private method

static private SendRemainingActivity ( ) : void
return void
Exemplo n.º 1
0
 private static void AndroidEnvironment_UnhandledExceptionRaiser(object sender, RaiseThrowableEventArgs e)
 {
     if (e.Exception != null)
     {
         _client.Send(e.Exception, new List <string>()
         {
             "UnhandledException"
         });
         Pulse.SendRemainingActivity();
     }
 }
Exemplo n.º 2
0
 private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
 {
     if (e.ExceptionObject is Exception)
     {
         _client.Send((e.ExceptionObject as Exception), new List <string>()
         {
             "UnhandledException"
         });
         Pulse.SendRemainingActivity();
     }
 }