MailMessage.Fields Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Microsoft İşbirliği Veri Nesneleri (CDO) alanlarına eşleyen nesne koleksiyonunu alır. Önerilen alternatif: 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
Özellik Değeri
IDictionary İşbirliği Veri Nesneleri (CDO) alanlarına eşleyen nesne koleksiyonu.
Örnekler
Aşağıdaki kod örneği, kimlik doğrulaması için bir Basit Posta Aktarım Protokolü (SMTP) sunucusuna kullanıcı adınızı ve parolanızı göndermek için özelliğinin kullanılmasını Fields gösterir.
// 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")
Açıklamalar
özelliği, Fields İşbirliği Veri Nesneleri (CDO) için genişletilmiş özellikleri ayarlamak için kullanılır. CDO hakkında daha fazla bilgi için bkz. İşbirliği Veri Nesneleri ve Yapılandırma Ortak Sınıfı.