SmtpClient.ServicePoint プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > SmtpClient.ServicePoint プロパティの意味・解説 

SmtpClient.ServicePoint プロパティ

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

電子メール メッセージの送信使用するネットワーク接続取得します

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

例外例外
例外種類条件

InvalidOperationException

Hostnull 参照 (Visual Basic では Nothing) または空の文字列 ("") です。

または

Port が 0 です。

解説解説
使用例使用例

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);
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照


このページでは「.NET Framework クラス ライブラリ リファレンス」からSmtpClient.ServicePoint プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からSmtpClient.ServicePoint プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からSmtpClient.ServicePoint プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

SmtpClient.ServicePoint プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



SmtpClient.ServicePoint プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS