MailMessage.Fields 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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를 참조하세요.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET