Partager via


SyndicationFeed.Contributors Propriété

Définition

Obtient une collection des contributeurs du flux.

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)

Valeur de propriété

Collection<SyndicationPerson>

Collection d’objets SyndicationPerson qui représente les contributeurs du flux.

Exemples

Le code suivant illustre l’ajout d’un collaborateur à la collection Contributors de SyndicationFeed.

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"))

Le code XML suivant montre comment la collection Contributors est sérialisée vers Atom 1.0.

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

Le code XML suivant montre comment la collection Contributors est sérialisée vers 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>

Remarques

En cas de sérialisation vers Atom 1.0, chacun SyndicationPerson dans la collection est écrit dans un <contributor> élément.

En cas de sérialisation sur RSS 2.0, chacun SyndicationPerson de la collection est écrit dans un <a10:contributor> élément.

S’applique à