SyndicationFeed.Items プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このフィードに格納されるフィード項目のコレクションを取得します。
public:
property System::Collections::Generic::IEnumerable<System::ServiceModel::Syndication::SyndicationItem ^> ^ Items { System::Collections::Generic::IEnumerable<System::ServiceModel::Syndication::SyndicationItem ^> ^ get(); void set(System::Collections::Generic::IEnumerable<System::ServiceModel::Syndication::SyndicationItem ^> ^ value); };
public System.Collections.Generic.IEnumerable<System.ServiceModel.Syndication.SyndicationItem> Items { get; set; }
member this.Items : seq<System.ServiceModel.Syndication.SyndicationItem> with get, set
Public Property Items As IEnumerable(Of SyndicationItem)
プロパティ値
SyndicationItem オブジェクトのコレクション。
例
Items インスタンスの SyndicationFeed コレクションを設定する方法を次のコードに示します。
List<SyndicationItem> items = new List<SyndicationItem>();
SyndicationItem item1 = new SyndicationItem();
item1.Title = new TextSyndicationContent("Item 1");
item1.Content = SyndicationContent.CreatePlaintextContent("This is the content for Item 1");
items.Add(item1);
SyndicationItem item2 = new SyndicationItem();
item2.Title = new TextSyndicationContent("Item 2");
item2.Content = SyndicationContent.CreatePlaintextContent("This is the content for Item 2");
items.Add(item2);
SyndicationFeed feed = new SyndicationFeed();
feed.Items = items;
Dim items = New List(Of SyndicationItem)()
Dim item1 = New SyndicationItem()
item1.Title = New TextSyndicationContent("Item 1")
item1.Content = SyndicationContent.CreatePlaintextContent("This is the content for Item 1")
items.Add(item1)
Dim item2 = New SyndicationItem()
item2.Title = New TextSyndicationContent("Item 2")
item2.Content = SyndicationContent.CreatePlaintextContent("This is the content for Item 2")
items.Add(item2)
Dim feed = New SyndicationFeed()
feed.Items = items
Items コレクションを Atom 1.0 にシリアル化する方法を次の XML に示します。
<entry>
<id>ItemID</id>
<title type="text">Item Title</title>
<updated>2007-04-13T17:29:38Z</updated>
<link rel="alternate" href="http://contoso/items" />
<content type="text">Some text content</content>
</entry>
Items コレクションを RSS 2.0 にシリアル化する方法を次の XML に示します。
<item>
<guid isPermaLink="false">ItemID</guid>
<link>http://contoso/items</link>
<title>項目のタイトル</title>
<description>一部のテキスト コンテンツ</description>
<a10:updated>2007-04-13T17:29:38Z</a10:updated>
</item>
注釈
Atom 1.0 にシリアル化すると、 Items コレクションは要素に <entry>
書き込まれます。
Atom 1.0 にシリアル化すると、 Items コレクションは要素に <item>
書き込まれます。