예제 #1
0
        static ErrorAttachmentLog PlatformAttachmentWithBinary(byte[] data, string filename, string contentType)
        {
            NSData nsdata = NSData.FromArray(data);
            MSErrorAttachmentLog macAttachment = MSErrorAttachmentLog.AttachmentWithBinaryData(nsdata, filename, contentType);

            return(new ErrorAttachmentLog(macAttachment));
        }
예제 #2
0
 ErrorAttachmentLog(MSErrorAttachmentLog macAttachment)
 {
     internalAttachment = macAttachment;
 }
예제 #3
0
        static ErrorAttachmentLog PlatformAttachmentWithText(string text, string fileName)
        {
            MSErrorAttachmentLog macAttachment = MSErrorAttachmentLog.AttachmentWithText(text, fileName);

            return(new ErrorAttachmentLog(macAttachment));
        }
예제 #4
0
 ErrorAttachmentLog(MSErrorAttachmentLog iosAttachment)
 {
     internalAttachment = iosAttachment;
 }