SyndicationFeed.Contributors Eigenschaft

Definition

Ruft eine Auflistung der Beiträger zum Feed ab.

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)

Eigenschaftswert

Collection<SyndicationPerson>

Eine Sammlung der SyndicationPerson-Objekte, die für die Beiträger des Feed stehen.

Beispiele

Im folgenden Code wird das Hinzufügen einer beteiligten Person zur Contributors-Auflistung eines SyndicationFeed veranschaulicht.

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

Das folgende XML-Beispiel zeigt die Serialisierung der Contributors-Sammlung zu Atom 1.0.

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

Das folgende XML-Beispiel zeigt die Serialisierung der Contributors-Sammlung zu RSS 2.0.

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

Hinweise

Wenn sie in Atom 1.0 serialisiert werden, wird jede SyndicationPerson in der Auflistung in ein <contributor> Element geschrieben.

Wenn sie in RSS 2.0 serialisiert werden, wird jede SyndicationPerson in der Auflistung in ein <a10:contributor> Element geschrieben.

Gilt für