MailAddress.Host プロパティとは何? わかりやすく解説 Weblio辞書 (original) (raw)

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

このインスタンス作成されたときに指定されアドレスホスト部分を取得します

名前空間: System.Net.Mail
アセンブリ: System (system.dll 内)
構文構文

Visual Basic (宣言)

Public ReadOnly Property Host As String

Visual Basic (使用法)

Dim instance As MailAddress Dim value As String

value = instance.Host

C#

public string Host { get; }

C++

public: property String^ Host { String^ get (); }

J#

/** @property */ public String get_Host ()

JScript

public function get Host () : String

プロパティ
User プロパティ電子メール受け入れホスト コンピュータの名前を格納している String

解説解説

通常の電子メール アドレスでは、"@" 記号に続くすべて情報ホスト文字列含まれます。たとえば、"tsmith@contoso.com" の場合ホストは "contoso.com" です。

使用例使用例

電子メール メッセージの送信先を表示するコード例次に示します

C#

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 によってサポートされていないバージョンありますサポートされているバージョンについては、「システム要件」を参照してください

バージョン情報バージョン情報

.NET Framework
サポート対象 : 2.0

参照参照

関連項目
MailAddress クラス
MailAddress メンバ
System.Net.Mail 名前空間