我使用xignite API获取实时货币兑换数据。当我使用查询字符串时:
http://globalcurrencies.xignite.com/xGlobalCurrencies.xml/GetRealTimeRate?Symbol=GBPEUR&_token=[mytoken]
我得到以下内容:
<Rate xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.xignite.com/services/">
<Outcome>Success</Outcome>
<Identity>Request</Identity>
<Delay>0.0218855</Delay>
<BaseCurrency>USD</BaseCurrency>
<QuoteCurrency>EUR</QuoteCurrency>
<Symbol>USDEUR</Symbol>
<Date>08/24/2016</Date>
<Time>3:23:34 PM</Time>
<QuoteType>Calculated</QuoteType>
<Bid>0.889126</Bid>
<Mid>0.88915</Mid>
<Ask>0.889173</Ask>
<Spread>4.74352E-05</Spread>
<Text>
1 United States dollar = 0.88915 European Union euro
</Text>
<Source>Rate calculated from EUR:USD</Source>
</Rate>
我试图访问Mid
元素的内容,到目前为止我这样做
var xDoc = XDocument.Load(
"http://globalcurrencies.xignite.com/xGlobalCurrencies.xml/GetRealTimeRate?Symbol="
+ "GBP" + "EUR" + "&_token=[MyToken]");
string s = (string)xDoc.Root.Element("Mid");
output.Text = s;
xDoc
变量返回我之前显示的XML,但当我尝试获取Mid
元素的内容时,string s
为null
。如何使用XDoc访问元素Mid
的内容?
答案 0 :(得分:0)
我使用Linq to XML,这是一个例子
XNamespace ns = "http://www.xignite.com/services/";
XDocument xdoc = XDocument.Load(xmlPath);
var rateMids = (from obj in xdoc.Descendants(ns + "Rate")
select new Rate
(
obj.Attribute("Outcome").Value,
obj.Attribute("Identity").Value,
(decimal)obj.Attribute("Delay").Value,
obj.Attribute("BaseCurrency").Value,
obj.Attribute("QuoteCurrency").Value,
obj.Attribute("Symbol").Value,
DateTime.Parse(obj.Attribute("Date").Value),
obj.Attribute("Time").Value.ToString("hh:mm:ss tt", CultureInfo.CurrentCulture),
obj.Attribute("QuoteType").Value,
(decimal)obj.Attribute("Bid").Value,
(decimal)obj.Attribute("Mid").Value,
(decimal)obj.Attribute("Ask").Value,
Convert.ToInt32(obj.Attribute("Spread").Value),
Convert.ToInt32(obj.Attribute("Text").Value)
)
).ToArray();
myObjects将包含XML文件中的MyObjects数组。
编辑:既然您使用XML更新了问题,我认为您只缺少查询中的命名空间(查询中的ns),请查看Charles Mager的答案
我的答案是一种不同的方法..你保存Rate对象并使用它而不需要再次读取XML(你需要在类中定义Rate) 小心我所做的价值转换,你需要匹配你的类:)
答案 1 :(得分:0)
XML中的限定名称由两部分组成:命名空间和本地名称。在您的XML中,您的本地名称为Mid
,但您的命名空间不为空:它是http://www.xignite.com/services/
,由默认命名空间声明{{1}表示在根元素中。
如果考虑到这一点,您将得到一个结果:
xmlns="..."