c#选择单节点xpath返回null
本文关键字:xpath 返回 null 节点 选择 单节点 | 更新日期: 2023-09-27 18:06:31
我在c#项目中有一个应用程序配置,我需要在运行时编辑。作为其中的一部分,我有一个自定义部分集合,我需要为其选择单个节点。这是我的直接窗口中的xml和选择语句:
node = xmlDoc.SelectSingleNode("//Customers/add[@id='1']");
零<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="customers" type ="ImporterSupport.CustConfigSection, ImporterSupport"/>
</configSections>
<customers>
<add id ="1" license="gh620g0g0g0g0g3p" ServerAddress ="localhost" ServerPort="8292" SettingsFile ="AutoImportTest.txt" Confirm ="false" DisableRemoveRecips="true" DisableRecoverRecips="true" DisableAlphaId ="true" />
</customers>
</configuration>
Xml区分大小写。使用
var node = xmlDoc.SelectSingleNode("//customers/add[@id='1']");