SendRemainingViews() static private method

static private SendRemainingViews ( ) : void
return void
示例#1
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.SendRemainingViews();
            }
        }
示例#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"
         });
         if (_client.NativeClient != null)
         {
             WriteExceptionInformation(_client.NativeClient.NextReportUUID, e.ExceptionObject as Exception);
         }
         Pulse.SendRemainingViews();
     }
 }