Udostępnij za pośrednictwem


SyndicationItem.Authors Właściwość

Definicja

Pobiera autorów elementu syndykacji.

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)

Wartość właściwości

Collection<SyndicationPerson>

Kolekcja SyndicationPerson obiektów reprezentujących autorów elementu syndykacji.

Przykłady

Poniższy kod pokazuje, jak dodać autora do Authors kolekcji obiektu 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"))

Poniższy kod XML pokazuje, jak poprzedni SyndicationItem kod jest serializowany do programu 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>

Poniższy kod XML pokazuje, jak poprzednia SyndicationItem jest serializowana do rss 2.0.

<item>
  <guid isPermaLink="false">Item ID</guid>
  <link>http://someserver/MyItem</link>
  <author>someone@mycompany.com</author>
  <title>Mój element</title>
  <description>To jest część zawartości</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>

Uwagi

Podczas serializacji do atomu 1.0 <author> element jest zapisywany dla każdego SyndicationPerson elementu w kolekcji Authors .

Podczas serializacji do rss 2.0. <managingEditor> element jest zapisywany, jeśli Authors kolekcja ma tylko jeden SyndicationPersonelement , w przeciwnym razie <a10:author> element jest zapisywany dla każdego SyndicationPerson elementu w kolekcjiAuthors.

Dotyczy