SyndicationItem.Contributors Свойство

Определение

Получает участников данного элемента синдикации.

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)

Значение свойства

Collection<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.

<contributor>
  <name>Lene Aaling</name>
  <uri>http://lene/aaling</uri>
  <email>lene@contoso.com</email>
</contributor>

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

<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> создается для каждого объекта SyndicationPerson в коллекции Contributors.

При сериализации в RSS 2.0 элемент <a10:contributor> создается для каждого объекта SyndicationPerson в коллекции Contributors.

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