tags:

views:

1337

answers:

5

We use RSS.Net (old and not maintained, but there's a more recent fork) to parse RSS feeds. We wrote a similar library to parse Atom feeds and managed to extract a common interface from both, this way we don't really care what sort of feed it is.

Is there something like that already "out there"?

+9  A: 

Argotic Syndication Framework

John Sheehan
+8  A: 

If going up to .NET Framework 3.5 check out the new .NET syndication API.

http://msdn.microsoft.com/en-us/library/system.servicemodel.syndication.syndicationfeed.aspx.

Arun
+2  A: 

FeedDotNet

Vertigo
+1  A: 

You might find useful Atom.Net and FeedDotNet, both open source.

CMS
+4  A: 

Beware the .NET Syndication API. If you do not control the feeds that will be consumed, you may run into date parsing problems. I have not found an acceptable solution to this.

dan90266