RSS C#获取汇率

时间:2011-04-19 06:31:56

标签: c# asp.net rss

如何使用此RSS获取汇率,以便我可以在我的应用中使用它?

http://www.rba.gov.au/statistics/frequency/exchange-rates.html

3 个答案:

答案 0 :(得分:4)

查看System.ServiceModel.Syndication namespace。你可以像这样使用SyndicationFeed.Load()方法:

XmlReader reader = XmlReader.Create("http://www.rba.gov.au/rss/rss-cb-exchange-rates.xml");
SyndicationFeed feed = SyndicationFeed.Load(reader);

答案 1 :(得分:0)

您应该使用this链接来获取RSS Feed。

这也是一个重复的问题check this

答案 2 :(得分:0)

框架中没有内置RDF阅读器,这是本网站公开的Feed中使用的格式,因此您可以使用third party library