Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SyndicationFeed Class doesn't handle RSS version 0.91

The SyndicationFeed Class in .NET only seems to support RSS version 2.0. How do I go about supporting RSS version 0.91?

like image 412
Rogan Avatar asked May 29 '09 09:05

Rogan


1 Answers

In short, you need to create a class that handles the serialization and deserialization of the RSS 0.91 standard. Such a class should derive from the SyndicationFeedFormatter class.

I've created such a class and provide its source code and a description of how to use it here: Syndicating and Consuming RSS 1.0 (RDF) Feeds in ASP.NET 3.5.

Happy programming!

like image 191
Scott Mitchell Avatar answered Oct 02 '22 23:10

Scott Mitchell