在 C# 中使用命名空间 xdocument 获取 xelement 值
如果 xdocument 具有命名空间属性,我无法获取 xelement 值。这是我的代码:
string ts = @"<TestNameSpace xmlns='http://www.w3.org/2001/XMLSchema'>
<requestID>
<client>xxxx</client>
<id>yyyy</id>
<timestamp>zzzz</timestamp>
</requestID>
</TestNameSpace>";
XDocument doc1 = XDocument.Parse(ts);
XElement reqID = doc1.Root.Element("requestID");
我的问题是上面代码中的 reqID 返回空数据。如果没有 xmlns 属性或 xmlns 值为空,则 reqID 将获得正确的数据。
谁能告诉我上面的代码有什么问题吗?
感谢您的提前。
I am not able to get xelement value if xdocument has namespace attribute. Here is my code:
string ts = @"<TestNameSpace xmlns='http://www.w3.org/2001/XMLSchema'>
<requestID>
<client>xxxx</client>
<id>yyyy</id>
<timestamp>zzzz</timestamp>
</requestID>
</TestNameSpace>";
XDocument doc1 = XDocument.Parse(ts);
XElement reqID = doc1.Root.Element("requestID");
My problem is that reqID returns null data in the above code. If without xmlns attribute or empty value of xmlns, the reqID will get correct data.
Can anyone tell me what wrong in the above code?
Thank for advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要首先定义一个
XNamespace
:然后在查询中使用它:
You need to first define an
XNamespace
:and then use that in your query:
尝试这样:
Try like this: