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

Is there a RSS library for .NET?

link|improve this question
What specific functionality do you need? – Larsenal Oct 2 '09 at 16:28
@jefclaes - consider qualifying your question with a .net version. .NET 3.5 includes RSS/ATOM support out of the box. – x0n Oct 2 '09 at 16:38
feedback

6 Answers

up vote 8 down vote accepted

You might start with the System.ServiceModel.Syndication Namespace. It includes classes for RSS and Atom.

link|improve this answer
+1. This requires .Net 3.5, but it works great. – David Oct 2 '09 at 16:34
feedback

According to Google, there are a few options:

Also, many commercial networking toolkits for .NET (e.g. /n Software's IP*Works!) support RSS.

In addition to that, the RSS protocol itself isn't too involved: using .NET's native HttpClient and some LINQ to XML magic, it should not be too difficult to implement a RSS client yourself...

link|improve this answer
feedback

I have answered a similar question 2 times ;- ) Check this out : http://stackoverflow.com/questions/684507/rss-parser-in-net/684518#684518

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

.net has a class to parse ATOM and RSS feeds. Check out the links. What are you trying to do? Can you give more information?

Alternatively You can just remove the "Feed version" from the XML file and parse it as a normal XML file using xmlDocument class.

link|improve this answer
feedback

Here please check this out : RSSDOTNET

link|improve this answer
feedback

There are tons, including using LinqToXML, however, IMHO, the Argotic framework is the most robust.

http://argotic.codeplex.com/

link|improve this answer
feedback

There are many of them, e.g. rss.net.

And it's easy to implement reading without any lib

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.