다음을 통해 공유


SyndicationPerson.ElementExtensions 속성

정의

SyndicationPerson의 요소 확장을 가져옵니다.

public:
 property System::ServiceModel::Syndication::SyndicationElementExtensionCollection ^ ElementExtensions { System::ServiceModel::Syndication::SyndicationElementExtensionCollection ^ get(); };
public System.ServiceModel.Syndication.SyndicationElementExtensionCollection ElementExtensions { get; }
member this.ElementExtensions : System.ServiceModel.Syndication.SyndicationElementExtensionCollection
Public ReadOnly Property ElementExtensions As SyndicationElementExtensionCollection

속성 값

SyndicationElementExtensionCollection

요소 확장을 포함하는 SyndicationElementExtensionCollection 입니다.

예제

다음 코드에서는 인스턴스에 요소 확장을 SyndicationPerson 추가하는 방법을 보여줍니다.

SyndicationPerson sp = new SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http://Jesper/Aaberg");
sp.ElementExtensions.Add("simpleString", "", "hello, world!");
Dim sp As New SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http://Jesper/Aaberg")
sp.ElementExtensions.Add("simpleString", "", "hello, world!")

다음 XML에서는 ElementExtensions 컬렉션이 Atom 1.0으로 serialize되는 방법을 보여 줍니다.

<author>
  <name>Kim Abercrombie</name>
  <uri>http://Kim/Abercrombie</uri>
  <email>Kim.Abercrombie@contoso.com</email>
  <customPersonElement xmlns="">person element text</customPersonElement>
</author>

다음 XML에서는 ElementExtensions 컬렉션이 RSS 2.0으로 serialize되는 방법을 보여 줍니다.

<a10:author>
  <a10:name>Kim Abercrombie</a10:name>
  <a10:uri>http://Kim/Abercrombie</a10:uri>
  <a10:email>Kim.Abercrombie@contoso.com</a10:email>
  <customPersonElement>person element text</customPersonElement>
</a10:author>

설명

배포 개체 모델을 사용하면 인스턴스에 사용자 지정 XML 요소를 추가할 수 SyndicationPerson 있습니다. 요소 네임스페이스와 포함된 네임스페이스가 다르면 유효한 XML 요소를 추가할 수 있습니다.

Atom 1.0으로 직렬화하면 모든 사용자 지정 요소가 또는 <contributor> 요소 내에서 <author> XML 요소로 작성됩니다.

RSS 2.0으로 직렬화되면 모든 사용자 지정 요소가 , <a10:contributor>또는 <a10:author> 요소 내에서 <managingEditor>XML 요소로 작성됩니다.

적용 대상