考虑以下XML:
<response> <status_code>200</status_code> <status_txt>OK</status_txt> <data> <url>http://bit.ly/b47LVi</url> <hash>b47LVi</hash> <global_hash>9EJa3m</global_hash> <long_url>http://www.tumblr.com/docs/en/api#api_write</long_url> <new_hash>0</new_hash> </data> </response>
我正在寻找一个真正短的方法来获得的值< hash>元件。我试过了:
var hash = xml.Element("hash").Value;
但这不工作。是否可以向XElement提供XPath查询?我可以做到与旧的System.Xml框架,做类似:
xml.Node("/response/data/hash").Value
在LINQ命名空间中有这样的东西吗?
更新:
在这些猴子绕着这一些,我找到了一种方法来做我想做的事:
var hash = xml.Descendants("hash").FirstOrDefault().Value;
我仍然有兴趣看看有没有更好的解决方案?
要使用带有LINQ to XML的XPath,为System.Xml.XPath添加一个using声明,这将使
原文链接:https://www.f2er.com/xml/294019.htmlSystem.Xml.XPath.Extensions
的扩展方法进入作用域。
在您的示例中:
var value = (string)xml.XPathEvaluate("/response/data/hash");