SyndicationFeed.Categories Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a collection of categories for the feed.
public:
property System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationCategory ^> ^ Categories { System::Collections::ObjectModel::Collection<System::ServiceModel::Syndication::SyndicationCategory ^> ^ get(); };
public System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationCategory> Categories { get; }
member this.Categories : System.Collections.ObjectModel.Collection<System.ServiceModel.Syndication.SyndicationCategory>
Public ReadOnly Property Categories As Collection(Of SyndicationCategory)
Property Value
A collection of SyndicationCategory objects that represent the categories for the feed.
Examples
The following code shows how to add a category to the Categories collection of a SyndicationFeed.
SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.Categories.Add(new SyndicationCategory("MyFeedCategory"));
Dim feed As New SyndicationFeed("Feed Title", "Feed Description", New Uri("http:'Feed/Alternate/Link"), "FeedID", DateTime.Now)
feed.Categories.Add(New SyndicationCategory("MyFeedCategory"))
The following XML shows how the Categories collection is serialized to Atom 1.0.
<category term="FeedCategory" label="CategoryLabel" scheme="CategoryScheme" />
The following XML shows how the Categories collection is serialized to RSS 2.0.
<category domain="CategoryScheme">FeedCategory</category>
Remarks
When serialized to Atom 1.0, each SyndicationCategory in the collection is written to a <category>
element.
When serialized to RSS 2.0, each SyndicationCategory in the collection is written to a <category>
element.