在C#中選擇具有命名空間的XML節點時遇到的問題
考慮一個包含命名空間的XML文檔,其結構如下:
<code class="language-xml"><?xml version="1.0" encoding="utf-8"?><project defaulttargets="Build" toolsversion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"><itemgroup><compile include="clsWorker.cs"></compile></itemgroup></project></code>
如果嘗試使用SelectSingleNode
方法檢索Compile
節點而沒有指定命名空間,則會傳回null:
<code class="language-csharp">XmlDocument xmldoc = new XmlDocument(); xmldoc.LoadXml(Xml); XmlNode node = xmldoc.SelectSingleNode("//Compile"); // 返回null</code>
解決方案:使用XmlNamespaceManager
為了在根元素具有命名空間的情況下正確檢索Compile
節點,應使用XmlNamespaceManager
:
<code class="language-csharp">XmlNamespaceManager ns = new XmlNamespaceManager(xmldoc.NameTable); ns.AddNamespace("msbld", "http://schemas.microsoft.com/developer/msbuild/2003"); XmlNode node = xmldoc.SelectSingleNode("//msbld:Compile", ns);</code>
透過新增命名空間管理器並指定正確的命名空間前綴(在本例中為「msbld」),SelectSingleNode
方法將成功定位並傳回所需的節點。
以上是如何使用 C# 選擇帶有命名空間的 XML 節點?的詳細內容。更多資訊請關注PHP中文網其他相關文章!