SyndicationItem.Authors 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
배포 항목의 작성자를 가져옵니다.
public:
property System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationPerson ^> ^ Authors { System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationPerson ^> ^ get(); };
public System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationPerson> Authors { get; }
member this.Authors : System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationPerson>
Public ReadOnly Property Authors As Collection(Of SyndicationPerson)
속성 값
배포 항목의 작성자를 나타내는 SyndicationPerson 개체 컬렉션입니다.
예제
다음 코드에서는 Authors의 SyndicationItem 컬렉션에 작성자를 추가하는 방법을 보여 줍니다.
SyndicationItem item = new SyndicationItem("Item Title", "Item Content", new Uri("http://Item/Alternate/Link"));
item.Authors.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.Authors.Add(New SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http:' contoso/jesper"))
다음 XML은 앞 SyndicationItem 의 직렬화 방법을 Atom 1.0으로 보여 집니다.
<entry>
<id>Item ID</id>
<title type="text">My Item</title>
<updated>2007-03-16T23:00:59Z</updated>
<author>
<name>Lene Aaling</name>
<uri>http://contoso/Lene</uri>
<email>lene@contoso.com</email>
</author>
<link rel="alternate" href="http://someserver/MyItem" />
<link rel="alternate" type="text/html" title="Alternate Link" length="1000" href="http://otherserver/Item" />
<content type="text">This is some content</content>
</entry>
다음 XML은 이전 SyndicationItem 이 RSS 2.0으로 직렬화되는 방법을 보여 줍니다.
<item>
<guid isPermaLink="false">Item ID</guid>
<link>http://someserver/MyItem</link>
<author>someone@mycompany.com</author>
<title>내 항목</title>
<description>일부 콘텐츠입니다.</description>
<a10:link rel="alternate" type="text/html" title="Alternate Link" length="1000" href="http://otherserver/Item" />
<a10:updated>2007-03-16T23:00:59Z</a10:updated>
</item>
설명
Atom 1.0 <author>
으로 직렬화할 때 컬렉션의 각 SyndicationPerson 요소에 Authors 대해 요소가 기록됩니다.
RSS 2.0으로 직렬화할 때 컬렉션에 <managingEditor>
Authors 요소가 하나SyndicationPerson만 있으면 요소가 작성되고, 그렇지 않으면 <a10:author>
컬렉션의 Authors 각 SyndicationPerson 요소에 대해 요소가 작성됩니다.