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
下列 XML 會說明 Items 集合如何序列化為 Atom 1.0。
<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>
下列 XML 會說明 Items 集合如何序列化為 RSS 2.0。
<item>
<guid isPermaLink="false">ItemID</guid>
<link>http://contoso/items</link>
<title>Item Title</title>
<description>Some text content</description>
<a10:updated>2007-04-13T17:29:38Z</a10:updated>
</item>
備註
序列化為 Atom 1.0 時, Items 集合會寫入 <entry>
專案。
序列化為 Atom 1.0 時, Items 集合會寫入 <item>
專案。