SyndicationFeed.Items Property
Gets a collection of the feed items contained in the feed.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Property Value
Type: System.Collections.Generic.IEnumerable<SyndicationItem>A collection of SyndicationItem objects.
The following code shows how to set the Items collection of a SyndicationFeed instance.
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;
The following XML shows how the Items collection is serialized to Atom 1.0.
The following XML shows how the Items collection is serialized to RSS 2.0.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.