internal EmailMessage(MessageImplementation message) { this.message = message; this.Synchronize(); this.accessToken = new EmailMessage.EmailMessageThreadAccessToken(this); }
public MimeAttachmentData(MimePart part, MessageImplementation message) : base(message) { this.attachmentPart = part; this.referenced = true; }
internal virtual void CopyTo(MessageImplementation destination) { }
public TnefAttachmentData(int attachmentIndex, MessageImplementation message) : base(message) { this.properties = new TnefPropertyBag(this); this.originalIndex = attachmentIndex; }
protected AttachmentData(MessageImplementation messageImplementation) { this.messageImplementation = messageImplementation; }
public AttachmentCookie(int index, MessageImplementation messageImplementation) { this.index = index; this.messageImplementation = messageImplementation; }
internal EmailRecipientCollection(MessageImplementation message, RecipientType recipientType) : this(message, recipientType, false) { }
internal EmailRecipientCollection(MessageImplementation message, RecipientType recipientType, bool isReadOnly) { this.message = message; this.recipientType = recipientType; this.isReadOnly = isReadOnly; }