Terraria v1.4.4.9
Terraria source code documentation
|
Public Member Functions | |
MailMessage () | |
MailMessage (string from, string to) | |
MailMessage (string from, string to, string? subject, string? body) | |
MailMessage (MailAddress from, MailAddress to) | |
void | Dispose () |
Protected Member Functions | |
virtual void | Dispose (bool disposing) |
Package Functions | |
void | Send (BaseWriter writer, bool sendEnvelope, bool allowUnicode) |
IAsyncResult | BeginSend (BaseWriter writer, bool sendEnvelope, bool allowUnicode, AsyncCallback callback, object state) |
void | EndSend (IAsyncResult asyncResult) |
string | BuildDeliveryStatusNotificationString () |
Properties | |
MailAddress? | From [get, set] |
MailAddress? | Sender [get, set] |
MailAddress? | ReplyTo [get, set] |
MailAddressCollection | ReplyToList [get] |
MailAddressCollection | To [get] |
MailAddressCollection | Bcc [get] |
MailAddressCollection | CC [get] |
MailPriority | Priority [get, set] |
DeliveryNotificationOptions | DeliveryNotificationOptions [get, set] |
string | Subject [get, set] |
Encoding? | SubjectEncoding [get, set] |
NameValueCollection | Headers [get] |
Encoding? | HeadersEncoding [get, set] |
string | Body [get, set] |
Encoding? | BodyEncoding [get, set] |
TransferEncoding | BodyTransferEncoding [get, set] |
bool | IsBodyHtml [get, set] |
AttachmentCollection | Attachments [get] |
AlternateViewCollection | AlternateViews [get] |
Private Member Functions | |
void | SetContent (bool allowUnicode) |
Private Attributes | |
AlternateViewCollection | _views |
AttachmentCollection | _attachments |
AlternateView | _bodyView |
string | _body = string.Empty |
Encoding | _bodyEncoding |
TransferEncoding | _bodyTransferEncoding = TransferEncoding.Unknown |
bool | _isBodyHtml |
bool | _disposed |
readonly Message | _message |
DeliveryNotificationOptions | _deliveryStatusNotification |
Definition at line 8 of file MailMessage.cs.