Esempio n. 1
0
        static ErrorAttachmentLog PlatformAttachmentWithText(string text, string fileName)
        {
            AndroidErrorAttachmentLog androidAttachment = AndroidErrorAttachmentLog.AttachmentWithText(text, fileName);

            return(new ErrorAttachmentLog(androidAttachment));
        }
Esempio n. 2
0
        static ErrorAttachmentLog PlatformAttachmentWithBinary(byte[] data, string filename, string contentType)
        {
            AndroidErrorAttachmentLog androidAttachment = AndroidErrorAttachmentLog.AttachmentWithBinary(data, filename, contentType);

            return(new ErrorAttachmentLog(androidAttachment));
        }
Esempio n. 3
0
 ErrorAttachmentLog(AndroidErrorAttachmentLog androidAttachment)
 {
     internalAttachment = androidAttachment;
 }