小编典典

当标签包含xmlNamespace时,SelectSingleNode返回null

c#

我正在将字符串加载到包含以下结构的XML文档中:

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">                  
  <ItemGroup>
    <Compile Include="clsWorker.cs" />        
  </ItemGroup>      
</Project>

然后我将所有内容加载到XmlDocument

XmlDocument xmldoc = new XmlDocument();
xmldoc.LoadXml(Xml);

然后发生以下问题:

XmlNode Node = xmldoc.SelectSingleNode("//Compile"); // returns null

当我xmlns从根元素(Project)删除属性时,它可以正常工作。

我如何SelectSingleNode返回相关元素?


阅读 309

收藏
2020-05-19

共1个答案

小编典典

您应该在对SelectSingleNode()的调用中使用XmlNamespaceManager

XmlNamespaceManager ns = new XmlNamespaceManager(xmldoc.NameTable);
ns.AddNamespace("msbld", "http://schemas.microsoft.com/developer/msbuild/2003");
XmlNode node = xmldoc.SelectSingleNode("//msbld:Compile", ns);
2020-05-19