RSS C# 获取汇率

发布于 2024-11-02 02:21:18 字数 201 浏览 0 评论 0原文

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

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

How do I use this RSS to get the exchange rates so I can use it in my app?

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

颜漓半夏 2024-11-09 02:21:18

查看 System.ServiceModel.Syndicate 命名空间。您可以使用 SyndicateFeed.Load() 方法,如下所示:

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

Have a look at the System.ServiceModel.Syndication namespace. You can use SyndicationFeed.Load() method like this:

XmlReader reader = XmlReader.Create("http://www.rba.gov.au/rss/rss-cb-exchange-rates.xml");
SyndicationFeed feed = SyndicationFeed.Load(reader);
写给空气的情书 2024-11-09 02:21:18

框架中没有内置 RDF 阅读器,该格式是此站点公开的提要中使用的格式,因此您可以使用 第三方库

There is no RDF reader built into the framework which is the format used in the feed exposed by this site so you could use a third party library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文