Reputation: 19365
I'm looking for class that can generate RSS feeds.
I'm thinking of a usage like this.
RssClass foo = new RssClass();
foo.addEntry("title", URL);
foo.Export("myexportpath.rss");
Has anybody seen such a class available for free usage?
Upvotes: 0
Views: 322
Reputation: 17964
The .Net 3.5 framework contains classes to quickly create both atom 1.0 & rss 2.0 feeds.
Upvotes: 2
Reputation: 16858
Have you looked at the System.ServiceModel.Syndication
namespace? That contains a raft of classes that allow you to create, consume and manipulate RSS feeds and the like.
Upvotes: 3