Mindscape.Raygun4Net.RaygunClient.CurrentDomain_UnhandledException C# (CSharp) 메소드

CurrentDomain_UnhandledException() 개인적인 정적인 메소드

private static CurrentDomain_UnhandledException ( object sender, UnhandledExceptionEventArgs e ) : void
sender object
e UnhandledExceptionEventArgs
리턴 void
        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._reporter != null)
            {
              WriteExceptionInformation (_client._reporter.NextReportUUID, e.ExceptionObject as Exception);
            }
            Pulse.SendRemainingViews();
              }
        }