up vote 3 down vote favorite
1
share [g+] share [fb]

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

link|improve this question

73% accept rate
feedback

4 Answers

up vote 3 down vote accepted

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.

link|improve this answer
RSS.NET isn't open source any longer :(. It really seems like a great product. – sduplooy Mar 21 '09 at 16:40
Yeah, didn't realise that. Quite unfortunate... – Noldorin Mar 21 '09 at 17:13
See the update to my post. It seems like you have a solution existing in the .NET Framework 3.5. :) – Noldorin Mar 21 '09 at 17:17
very nice, me like – Arnshea Mar 22 '09 at 9:22
feedback

There's one called Argotic Syndication Framework

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

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.