다음을 통해 공유


SyndicationPerson.Email 속성

정의

SyndicationPerson의 이메일 주소를 가져오거나 설정합니다.

public:
 property System::String ^ Email { System::String ^ get(); void set(System::String ^ value); };
public string Email { get; set; }
member this.Email : string with get, set
Public Property Email As String

속성 값

String

개인의 이메일 주소입니다.

예제

다음 코드에서는 인스턴스의 이메일 주소를 설정하는 방법을 보여 드립니다 SyndicationPerson .

SyndicationPerson sp = new SyndicationPerson();
sp.Email = "jesper@contoso.com";
Dim sp As New SyndicationPerson()
sp.Email = "jesper@contoso.com"

다음 XML은 Atom 1.0에 대해 serialize되는 방법을 Email 보여줍니다.

<author>
  <name>Jesper Aaberg</name>
  <uri>http://Jesper/Aaberg</uri>
  <email>Jesper.Aaberg@contoso.com</email>
</author>
<contributor>
  <name>Lene Aalling</name>
  <uri>http://Lene/Aaling</uri>
  <email>Lene.Aaling@contoso.com</email>
</contributor>

다음 XML은 RSS 2.0에 대해 serialize되는 방법을 Email 보여 줍니다.

<a10:author>
  <a10:name>Lene Aalling</a10:name>
  <a10:uri>http://Lene/Aalling</a10:uri>
  <a10:email>Lene.Aalling@contoso.com</a10:email>
</a10:author>
  <a10:contributor>
  <a10:name>Jesper Aaberg</a10:name>
  <a10:uri>http://Jesper/Aaberg</a10:uri>
  <a10:email>Jesper.Aaberg@contoso.com</a10:email>
</a10:contributor>

설명

Atom 1.0 SyndicationPerson 으로 직렬화하면 속성이 요소로 <email> 작성됩니다. 요소가 <email> 추가되는 컬렉션(작성자 또는 기여자)SyndicationPerson에 따라 달라지는 요소 또는 <contributor> 요소 내에 <author> 나타납니다.

RSS 2.0으로 직렬화하면 이 값이 요소로 <a10:email> 작성됩니다. <a10:email> 요소가 , <a10:author>또는 <a10:contributor> 요소 내에 <managingEditor>나타납니다. 작성자 컬렉션 <email> 에 하나 SyndicationPerson 만 추가되면 요소가 요소 내에 <managingEditor> 기록됩니다. 작성자 컬렉션 <email> 에 둘 SyndicationPerson 이상의 요소가 추가되면 요소가 요소 내에 <a10:author> 기록됩니다. SyndicationPerson 기여자 컬렉션 <email> 에 추가되는 경우 요소는 요소 내에 <a10:contributor> 기록됩니다.

적용 대상