/// <remarks/> public void updateAttachmentAsync(string pwd, int attachmentId, int attachmentOplock, string fileName, string mimeType, AttachmentTO newAttachment, object userState) { if ((this.updateAttachmentOperationCompleted == null)) { this.updateAttachmentOperationCompleted = new System.Threading.SendOrPostCallback(this.OnupdateAttachmentOperationCompleted); } this.InvokeAsync("updateAttachment", new object[] { pwd, attachmentId, attachmentOplock, fileName, mimeType, newAttachment}, this.updateAttachmentOperationCompleted, userState); }
/// <remarks/> public void updateAttachmentAsync(string pwd, int attachmentId, int attachmentOplock, string fileName, string mimeType, AttachmentTO newAttachment) { this.updateAttachmentAsync(pwd, attachmentId, attachmentOplock, fileName, mimeType, newAttachment, null); }
/// <remarks/> public void addAttachmentAsync(string pwd, int messageId, int messageOplock, string fileName, string mimeType, AttachmentTO attachment) { this.addAttachmentAsync(pwd, messageId, messageOplock, fileName, mimeType, attachment, null); }
public AttachmentTO updateAttachment(string pwd, int attachmentId, int attachmentOplock, string fileName, string mimeType, AttachmentTO newAttachment) { object[] results = this.Invoke("updateAttachment", new object[] { pwd, attachmentId, attachmentOplock, fileName, mimeType, newAttachment}); return ((AttachmentTO)(results[0])); }
public AttachmentTO addAttachment(string pwd, int messageId, int messageOplock, string fileName, string mimeType, AttachmentTO attachment) { object[] results = this.Invoke("addAttachment", new object[] { pwd, messageId, messageOplock, fileName, mimeType, attachment}); return ((AttachmentTO)(results[0])); }