MailMessage.Fields プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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」を参照してください。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET