Export to RSS Feed
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?
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.
The .Net 3.5 framework contains classes to quickly create both atom 1.0 & rss 2.0 feeds.
精彩评论