SyndicationItem.Contributors 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得新聞訂閱項目的參與者。
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)
屬性值
表示新聞訂閱項目參與者的 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 項目。