다음을 통해 공유


SyndicationItem.Authors 속성

정의

배포 항목의 작성자를 가져옵니다.

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)

속성 값

Collection<SyndicationPerson>

배포 항목의 작성자를 나타내는 SyndicationPerson 개체 컬렉션입니다.

예제

다음 코드에서는 AuthorsSyndicationItem 컬렉션에 작성자를 추가하는 방법을 보여 줍니다.

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> 컬렉션의 AuthorsSyndicationPerson 요소에 대해 요소가 작성됩니다.

적용 대상