SmtpClient.ServicePoint プロパティ
アセンブリ: System (system.dll 内)

/** @property */ public ServicePoint get_ServicePoint ()
SMTP で使用される Host プロパティに接続する ServicePoint。



ServicePoint プロパティにアクセスするコード例を次に示します。
public static void CreateTestMessage1(string server, int port) { string to = "jane@contoso.com"; string from = "ben@contoso.com"; string subject = "Using the new SMTP client."; string body = @"Using this new feature, you can send an e-mail message from an application very easily."; MailMessage message = new MailMessage(from, to, subject, body); SmtpClient client = new SmtpClient(server, port); // Credentials are necessary if the server requires the client // to authenticate before it will send e-mail on the client's behalf. client.Credentials = CredentialCache.DefaultNetworkCredentials; 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 によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からSmtpClient.ServicePoint プロパティを検索する場合は、下記のリンクをクリックしてください。

- SmtpClient.ServicePoint プロパティのページへのリンク