在 C# 中使用命名空间 xdocument 获取 xelement 值

发布于 2024-11-19 03:48:31 字数 537 浏览 1 评论 0原文

如果 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 技术交流群。

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

发布评论

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

评论(2

梦在深巷 2024-11-26 03:48:31

您需要首先定义一个XNamespace

XNamespace ns = "http://www.w3.org/2001/XMLSchema";

然后在查询中使用它:

XDocument doc1 = XDocument.Parse(ts);
XElement reqID = doc1.Root.Element(ns + "requestID");

You need to first define an XNamespace:

XNamespace ns = "http://www.w3.org/2001/XMLSchema";

and then use that in your query:

XDocument doc1 = XDocument.Parse(ts);
XElement reqID = doc1.Root.Element(ns + "requestID");
ぇ气 2024-11-26 03:48:31

尝试这样:

string xml = 
@"<TestNameSpace xmlns='http://www.w3.org/2001/XMLSchema'>
  <requestID>
    <client>xxxx</client>
    <id>yyyy</id>
    <timestamp>zzzz</timestamp>
 </requestID>
</TestNameSpace>";
var doc = XDocument.Parse(xml);
XNamespace ns = "http://www.w3.org/2001/XMLSchema";
var reqID = doc.Root.Element(ns + "requestID");

Try like this:

string xml = 
@"<TestNameSpace xmlns='http://www.w3.org/2001/XMLSchema'>
  <requestID>
    <client>xxxx</client>
    <id>yyyy</id>
    <timestamp>zzzz</timestamp>
 </requestID>
</TestNameSpace>";
var doc = XDocument.Parse(xml);
XNamespace ns = "http://www.w3.org/2001/XMLSchema";
var reqID = doc.Root.Element(ns + "requestID");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文