SyndicationFeed.Contributors 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
피드 검토자 컬렉션을 가져옵니다.
public:
property System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationPerson ^> ^ Contributors { System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationPerson ^> ^ get(); };
public System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationPerson> Contributors { get; }
member this.Contributors : System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationPerson>
Public ReadOnly Property Contributors As Collection(Of SyndicationPerson)
속성 값
피드 검토자를 나타내는 SyndicationPerson 개체 컬렉션입니다.
예제
다음 코드에서는 Contributors의 SyndicationFeed 컬렉션에 검토자를 추가하는 방법을 보여 줍니다.
SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.Contributors.Add(new SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http://contoso/jesper"));
Dim feed As New SyndicationFeed("Feed Title", "Feed Description", New Uri("http:'Feed/Alternate/Link"), "FeedID", DateTime.Now)
feed.Contributors.Add(New SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http:'contoso/jesper"))
다음 XML에서는 Contributors 컬렉션이 Atom 1.0으로 serialize되는 방법을 보여 줍니다.
<contributor>
<name>Lene Aalling</name>
<uri>http://contoso/Aalling</uri>
<email>Lene.Aaling@contoso.com</email>
</contributor>
다음 XML에서는 Contributors 컬렉션이 RSS 2.0으로 serialize되는 방법을 보여 줍니다.
<a10:contributor>
<a10:name>Lene Aalling</a10:name>
<a10:uri>http://contoso/Aalling</a10:uri>
<a10:email>Lene.Aalling@contoso.com</a10:email>
</a10:contributor>
설명
Atom 1.0으로 serialize되면 컬렉션의 각 SyndicationPerson 요소가 요소에 <contributor>
기록됩니다.
RSS 2.0으로 serialize되면 컬렉션의 각 SyndicationPerson 항목이 요소에 <a10:contributor>
기록됩니다.