Exemple #1
0
        public override MSErrorAttachment AttachmentWithCrashes(MSCrashes crashes, MSErrorReport msReport)
        {
            if (_owner.GetErrorAttachment == null)
            {
                return(null);
            }

            var             report     = ErrorReportCache.GetErrorReport(msReport);
            ErrorAttachment attachment = _owner.GetErrorAttachment(report);

            if (attachment != null)
            {
                return(attachment.internalAttachment);
            }

            return(null);
        }
Exemple #2
0
        public AndroidErrorAttachment GetErrorAttachment(AndroidErrorReport androidReport)
        {
            if (_owner.GetErrorAttachment == null)
            {
                return(null);
            }

            var report     = ErrorReportCache.GetErrorReport(androidReport);
            var attachment = _owner.GetErrorAttachment(report);

            if (attachment != null)
            {
                return(attachment.internalAttachment);
            }

            return(null);
        }