MailMessage.SubjectEncoding Property
.NET Framework 3.0
Gets or sets the encoding used for the subject content for this e-mail message.
Namespace: System.Net.Mail
Assembly: System (in system.dll)
Assembly: System (in system.dll)
public: property Encoding^ SubjectEncoding { Encoding^ get (); void set (Encoding^ value); }
/** @property */ public Encoding get_SubjectEncoding () /** @property */ public void set_SubjectEncoding (Encoding value)
public function get SubjectEncoding () : Encoding public function set SubjectEncoding (value : Encoding)
Not applicable.
Property Value
An Encoding that was used to encode the Subject property.The following code example demonstrates setting the SubjectEncoding property.
MailMessage^ message = gcnew MailMessage(from, to); message->Body = "This is a test e-mail message sent" + " by an application. "; // Include some non-ASCII characters in body and // subject. String^ someArrows = gcnew String(gcnew array<wchar_t>{L'\u2190', L'\u2191', L'\u2192', L'\u2193'}); message->Body += Environment::NewLine + someArrows; message->BodyEncoding = System::Text::Encoding::UTF8; message->Subject = "test message 1" + someArrows; message->SubjectEncoding = System::Text::Encoding::UTF8;
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: