Ejemplo n.º 1
0
        private bool CanIgnoreExceptionForWatsonReport(Exception exception)
        {
            if (OwaDiagnostics.CanIgnoreExceptionForWatsonReport(exception))
            {
                return(true);
            }
            TargetInvocationException ex = exception as TargetInvocationException;

            return(ex != null && ex.InnerException != null && OwaDiagnostics.CanIgnoreExceptionForWatsonReport(ex.InnerException));
        }
Ejemplo n.º 2
0
 public static void SendWatsonReportsForGrayExceptions(GrayException.UserCodeDelegate tryCode)
 {
     GrayException.MapAndReportGrayExceptions(tryCode, delegate(Exception exception)
     {
         if (OwaDiagnostics.CanIgnoreExceptionForWatsonReport(exception))
         {
             ExWatson.SetWatsonReportAlreadySent(exception);
             return(true);
         }
         return(GrayException.IsGrayException(exception));
     });
 }