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 にシリアル化する場合、Contributors コレクションの各 SyndicationPerson に対して <a10:contributor>
要素が作成されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET