Exemple #1
0
        private static void SendErrorAttachments(string errorReportId)
        {
            // Send attachments for error report.
            var errorReport = CrashesInternal.BuildHandledErrorReport(errorReportId);

            errorReport.IsCrash = false;
            var attachments = CrashesDelegate.GetErrorAttachmentsHandler == null ? null : CrashesDelegate.GetErrorAttachmentsHandler(errorReport);

            CrashesInternal.SendErrorAttachments(errorReportId, attachments);
        }
Exemple #2
0
 public static void Initialize()
 {
     CrashesDelegate.SetDelegate();
 }