rss parser in .net

余生长醉 提交于 2019-11-28 09:13:28

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.

Simon Forrest

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.

You may want to look at Argotic too - http://www.codeplex.com/Argotic

I have used Argotic during .Net 1.1 when the Syndication framework was not available in the framework and it did the job.

However, I would recommend the use of System.ServiceModel.Syndication if it does everything you need.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!