rss parser in .net

后端 未结 3 519
情深已故
情深已故 2020-12-09 18:56

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

相关标签:
3条回答
  • 2020-12-09 19:39

    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.

    0 讨论(0)
  • 2020-12-09 19:47

    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.

    0 讨论(0)
  • 2020-12-09 20:00

    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.

    0 讨论(0)
提交回复
热议问题