次の方法で共有


MailMessage.Fields プロパティ

定義

Microsoft CDO (Collaboration Data Objects) のフィールドに対応付けるオブジェクトのコレクションを取得します。 推奨する代替 : System.Net.Mail

public:
 property System::Collections::IDictionary ^ Fields { System::Collections::IDictionary ^ get(); };
public System.Collections.IDictionary Fields { get; }
member this.Fields : System.Collections.IDictionary
Public ReadOnly Property Fields As IDictionary

プロパティ値

CDO (Collaboration Data Objects) のフィールドに対応付けるオブジェクトの IDictionary コレクション。

次のコード例では、 プロパティを Fields 使用して、認証用の簡易メール転送プロトコル (SMTP) サーバーにユーザー名とパスワードを送信する方法を示します。

// Use the Fields property to add authentication, your username, and your password.
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1");    
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "marsha"); 
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "secret");
' Use the Fields property to add authentication, your username, and your password.
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1")
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", "marsha")
mail.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", "secret")

注釈

プロパティは Fields 、コラボレーション データ オブジェクト (CDO) の拡張プロパティを設定するために使用されます。 CDO の詳細については、「 コラボレーション データ オブジェクト構成 CoClass」を参照してください。

適用対象