MailMessage.Fields Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft eine Auflistung von Objekten ab, die Microsoft CDO-Feldern (Collaboration Data Objects) zugeordnet sind. Empfohlene Alternative: 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
Eigenschaftswert
Eine IDictionary-Auflistung von Objekten, die CDO-Feldern (Collaboration Data Objects) zugeordnet sind.
Beispiele
Im folgenden Codebeispiel wird die Verwendung der Fields -Eigenschaft veranschaulicht, um Ihren Benutzernamen und Ihr Kennwort zur Authentifizierung an einen SMTP-Server (Simple Mail Transfer Protocol) zu senden.
// 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")
Hinweise
Die Fields -Eigenschaft wird verwendet, um erweiterte Eigenschaften für Collaboration Data Objects (CDO) festzulegen. Weitere Informationen zu CDO finden Sie unter Collaboration Data Objects and Configuration CoClass.