MailAddress.Host プロパティとは何? わかりやすく解説 Weblio辞書 (original) (raw)
メモ : このプロパティは、.NET Framework version 2.0 で新しく追加されたものです。
このインスタンスが作成されたときに指定されたアドレスのホスト部分を取得します。
名前空間: System.Net.Mail
アセンブリ: System (system.dll 内)
構文
Public ReadOnly Property Host As String
Dim instance As MailAddress Dim value As String
value = instance.Host
public: property String^ Host { String^ get (); }
/** @property */ public String get_Host ()
public function get Host () : String
プロパティ値
User プロパティの電子メールを受け入れるホスト コンピュータの名前を格納している String。
通常の電子メール アドレスでは、"@" 記号に続くすべての情報がホスト文字列に含まれます。たとえば、"tsmith@contoso.com" の場合、ホストは "contoso.com" です。
電子メール メッセージの送信先を表示するコード例を次に示します。
public static void CreateTestMessage3() { MailAddress to = new MailAddress("jane@contoso.com"); MailAddress from = new MailAddress("ben@contoso.com"); MailMessage message = new MailMessage(from, to); message.Subject = "Using the new SMTP client."; message.Body = @"Using this new feature, you can send an e-mail message from an application very easily."; // Use the application or machine configuration to get the // host, port, and credentials. SmtpClient client = new SmtpClient(); Console.WriteLine("Sending an e-mail message to {0} at {1} by using the SMTP host {2}.", to.User, to.Host, client.Host); client.Send(message); }
Windows 98, Windows 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
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
関連項目
MailAddress クラス
MailAddress メンバ
System.Net.Mail 名前空間