Overview
In my previous post, I demonstrated how to create an RSS feed using an XML Document.
This got some attention as it was pointed out to me that I could achieve the same result using the .NET Syndication classes. As a result, I have created this programming article with an alternate version of the class, which does away with the XMLDocument
manipulation and uses these Syndication classes.
As with any default namespaces and classes in the .NET Framework, they expose a lot of things that I quite simply don't need for my simple News or Article RSS feed, so I have wrapped them up as I did last time into a utility class, which enables you to quickly and easily create your feed.
Using the Code
The code is available for download here, simply put it into your project and add a reference to yourprojectnamespace.Syndication. Using the code is very simple, see this example:
Dim rssfeed As New RSSFeed("Your RSS Feed Title",
"The description of your feed",
"The URL to the feed",
"A unique identifier for your feed",
Now,
"en-GB")
rssfeed.AddFeedCategory("CodeProject", "http://www.codeproject.com", "CodeProject")
dim item = rssfeed.AddItem("Item Title",
"Item Description",
"Item Body",
"Item URL",
"A unique identifier for your item",
Now,
"The author name")
item.Categories.Add(New SyndicationCategory("CodeProject","http://www.codeproject.com","CodeProject"))
Return Content(rssfeed.ToString(rssfeed.OutputType.RSS2), "text/xml")
Notes
Because we're now using the syndication provider, you can choose to output as RSS2 or Atom1 by changing the parameter in the ToString
method.
This is utilizing the helper class as previous to ensure the XML document is UTF8, the resultant XML passes the RSS Feed Validator, and works perfectly with Code Project.
As usual, any questions, please ask.