Udostępnij za pośrednictwem


SyndicationFeed.Contributors Właściwość

Definicja

Pobiera kolekcję współautorów kanału informacyjnego.

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)

Wartość właściwości

Collection<SyndicationPerson>

Kolekcja SyndicationPerson obiektów reprezentujących współautorów kanału informacyjnego.

Przykłady

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

Poniższy kod XML pokazuje, jak Contributors kolekcja jest serializowana do programu Atom 1.0.

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

Poniższy kod XML pokazuje, jak Contributors kolekcja jest serializowana do 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>

Uwagi

Po serializacji do atomu 1.0 każdy SyndicationPerson w kolekcji jest zapisywany w elemencie <contributor> .

Po serializacji do rss 2.0 każdy SyndicationPerson w kolekcji jest zapisywany w elemecie <a10:contributor> .

Dotyczy