3

Before rolling my own RSS parser, is there a really good open-source parser already written for C#?

sduplooy
  • 14,340
  • 9
  • 41
  • 60

3 Answers3

3

Seems like the RSS.NET library is worth a try. It does seem to be reasonably complete. And judging by the code examples, it seems very easy to use.

Edit: I was looking for this earlier but couldn't find it for some reason... RSS syndication is now in fact built into the .NET Framework 3.5 as part of WCF. See this MSDN magazine article for an introduction (scroll down for the section about the syndication API). Also see the answer to this SO thread.

Community
  • 1
  • 1
Noldorin
  • 144,213
  • 56
  • 264
  • 302
2

There's one called Argotic Syndication Framework

If I were to roll my own, I would probably use this one as a reference.

Josh Stodola
  • 81,538
  • 47
  • 180
  • 227
1

I recently used FeedDotNet from codeplex. It was very simple to use, took very little time to get working.

Shea
  • 11,085
  • 2
  • 19
  • 21