SyndicationItem.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 개체 컬렉션입니다.
예제
다음 코드에서는 기여자를 추가하는 방법을 보여 있습니다 SyndicationItem.
SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.Contributors.Add(new SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http://contoso/jesper"));
Dim item As New SyndicationItem("Item Title", "Item Content", New Uri("http:' Item/Alternate/Link"))
item.Contributors.Add(New SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http:' contoso/jesper"))
다음 XML에서는 이 속성이 Atom 1.0으로 serialize되는 방법을 보여 있습니다.
<contributor>
<name>Lene Aaling</name>
<uri>http://lene/aaling</uri>
<email>lene@contoso.com</email>
</contributor>
다음 XML에서는 이 속성이 RSS 2.0으로 serialize되는 방법을 보여 줍니다.
<a10:contributor>
<a10:name>Jesper Aaberg</a10:name>
<a10:uri>http://Jesper/Aaberg</a10:uri>
<a10:email>Jesper@company.com</a10:email>
</a10:contributor>
설명
Atom 1.0 <contributor>
으로 serialize되면 컬렉션의 각 SyndicationPerson 요소에 Contributors 대해 요소가 만들어집니다.
RSS 2.0 <a10:contributor>
으로 serialize되면 컬렉션의 각 SyndicationPerson 요소에 Contributors 대해 요소가 만들어집니다.