XmlDocument LoadXml 错误 根级别的数据无效。线路 1,位置 1
我正在尝试从 xml 响应上的特定节点提取值。执行时我看到错误“根级别的数据无效。第 1 行,位置 1”。
我从这个Stackflow问题中了解到 此类问题的解决方案是修剪特殊字符,但是当我尝试提供 xmlMsg.Startswith 提供的解决方案时,会给出一条消息“'XmlDocument'不包含 Startswith 的定义...”
XmlDocument xmlMsg = new XmlDocument();
xmlMsg.LoadXml(_restResponse.Content); //------------->FAILS HERE
我在做什么吗错了(显然我错了)?还有其他方法可以实现我想要做的事情吗?
这是使用 VS 2022 和 .net-6。
I am trying to extract a value from a specific node on an xml response. On executing I am seeing error "Data at the root level is invalid. Line 1, position 1".
I understand from this Stackflow Question that the solution to this sort of problem is trim special characters however when I attempt the solution provided xmlMsg.Startswith gives a message "'XmlDocument' does not contain a definition for Startswith..."
XmlDocument xmlMsg = new XmlDocument();
xmlMsg.LoadXml(_restResponse.Content); //------------->FAILS HERE
Am I doing something wrong (clearly I am)? Is there another way to achieve what I am trying to do?
This is using VS 2022 and .net-6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论