System.Net.Mail.MailMessage.HeadersEncoding Property

Gets or sets the encoding used for the user-defined custom headers for this e-mail message.

Syntax

public System.Text.Encoding HeadersEncoding { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

The value of the MailMessage.HeadersEncoding property defaults to System.Text.Encoding.UTF8.

SMTP messages consist of headers and body parts. The IETF RFCs for SMTP restrict the header and body part names to be ASCII. However, the IETF RFCs allow header and body part values to contain Unicode characters. In any particular value, if non-ASCII characters exist, then the value is encoded using a combination of character encoding (UTF8 or Shift-JIS, for example) followed by byte encoding (System.Net.Mime.TransferEncoding.Base64 or System.Net.Mime.TransferEncoding.QuotedPrintable for example). The result is usually that only ASCII characters are in the network transmission stream.

Requirements

Namespace: System.Net.Mail
Assembly: System (in System.dll)
Assembly Versions: 4.0.0.0
Since: .NET 2.0