Linq to XML - 如何获取属性的值

发布于 2024-09-19 21:19:43 字数 418 浏览 1 评论 0原文

`

XElement config = XElement.Parse (
@"<Response SessionId='426D9AEB1F684849A16D79A6CF48582B' xmlns='http://schemas.tmaresources.com/timssws60.xsd'>
<Status Success='true' Message='Connected' ErrorCode='0' />
</Response>");

XElement response = config.Element("Response");

sessionID = (string)response.Attribute("SessionId");`

为什么在这种情况下响应为空?如何获取属性值SessionId?

`

XElement config = XElement.Parse (
@"<Response SessionId='426D9AEB1F684849A16D79A6CF48582B' xmlns='http://schemas.tmaresources.com/timssws60.xsd'>
<Status Success='true' Message='Connected' ErrorCode='0' />
</Response>");

XElement response = config.Element("Response");

sessionID = (string)response.Attribute("SessionId");`

why is response null in this case? how can I get the attribute value SessionId?

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

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

发布评论

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

评论(1

中性美 2024-09-26 21:19:43

您的 config 变量包含 元素本身。
调用 config.Element("Response") 将尝试获取 < 内部的 元素 /code> 元素。
由于没有任何内容,因此它返回 null

将其更改为

(string)config.Attribute("SessionId")

Your config variable contains the <Response> element itself.
Calling config.Element("Response") will try to get a <Response> element inside the <Response> element.
Since there isn't any, it returns null.

Change it to

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