提供了XmlNamespaceManager,但仍然需要“Namespace Manager或XsltContext”

时间:2010-02-22 14:38:43

标签: c# .net xml xpath

我正在尝试阅读以下内容并在其中选择一个节点

<ns1:OrderInfo xmlns:ns1="http://xxxxxx Some URL XXXX">
   <pricing someAttrHere>
      <childnodes>
   </pricing>
</ns1:OrderInfo>

XmlDocument document = new XmlDocument();
document.Load(Server.MapPath("order.xml"));

XmlNamespaceManager manager = new XmlNamespaceManager(document.NameTable);
manager.AddNamespace("ns1", "http://xxxxxx Some URL XXXX");
query = "/ns1:OrderInfo/pricing";
XmlNodeList nodeList = document.SelectNodes(query);

但它总是提供“需要命名空间管理器或XsltContext”

如上所示我使用XmlNamespaceManager添加命名空间仍然给出错误 请任何帮助

1 个答案:

答案 0 :(得分:37)

您还需要使用您的XmlNamespaceManager:

XmlNodeList nodeList = document.SelectNodes(query, manager);