다음을 통해 공유


MailMessage.Fields 속성

정의

Microsoft Collaboration Data Objects(CDO) 필드에 매핑되는 개체의 컬렉션을 가져옵니다. 권장되는 대체 항목: 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 Simple Mail Transfer Protocol () 서버에 보낼 속성입니다.

// 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(Collaboration Data Objects)에 대 한 확장된 속성을 설정할 속성을 사용 합니다. CDO에 대한 자세한 내용은 협업 데이터 개체구성 CoClass를 참조하세요.

적용 대상