Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

rss parser in .net

Tags:

c#

.net

rss

what's the best RSS reader for .net out there? most efficient and easy to use the ones i found are really complicated

like image 724
ssl Avatar asked Mar 26 '09 04:03

ssl


Video Answer


2 Answers

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.

like image 196
Shoban Avatar answered Oct 22 '22 17:10

Shoban


Have you looked at the System.ServiceModel.Syndication namespace in .NET 3.5?

There are other answers on Stack Overflow that may help - for example: C# RSS Reader.

like image 33
Simon Forrest Avatar answered Oct 22 '22 15:10

Simon Forrest