SyndicationFeed.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, представляющая авторов веб-канала.

Примеры

В следующем примере кода показано, как добавлять автора в коллекцию Authors экземпляра SyndicationFeed.

SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.Authors.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.Authors.Add(New SyndicationPerson("jesper@contoso.com", "Jesper Aaberg", "http:'contoso/jesper"))

В следующем XML-коде показано, как коллекция Authors сериализуется в Atom 1.0.

<author>
  <name>Jesper Aaberg</name>
  <uri>http://contoso/Aaberg</uri>
  <email>Jesper.Asberg@contoso.com</email>
</author>

В следующем XML-коде показано, как коллекция Authors сериализуется в RSS 2.0.

<a10:author>
  <a10:name>Lene Aalling</a10:name>
  <a10:uri>http://contoso/Aalling</a10:uri>
  <a10:email>Lene.Aalling@contoso.com</a10:email>
</a10:author>

Комментарии

При сериализации в Atom 1.0 каждый SyndicationPerson элемент в коллекции записывается в <author> элемент. При сериализации в RSS 2.0, если в коллекции существует только один объект SyndicationPerson , он записывается в <managingEditor> элемент. В противном случае каждый из них SyndicationPerson записывается в <a10:author> элемент.

Применяется к