我需要从 app/web.config 中的自定义部分读取键值。
我经历了
使用 ConfigurationManager 从 Web.Config 读取密钥
和
如何使用 C# 在 .config 文件中检索自定义配置部分的列表?
但是,当我们需要明确指定配置文件的路径时,它们没有指定如何读取自定义部分(在我的情况下,配置文件不在其默认位置)
我的 web.config 文件示例:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<MyCustomTag>
<add key="key1" value="value1" />
<add key="key2" value="value2" />
</MyCustomTag>
<system.web>
<compilation related data />
</system.web>
</configuration>
我需要在其中读取 MyCustomTag 中的键值对。
当我尝试时(configFilePath 是我的配置文件的路径): -
var configFileMap = new ExeConfigurationFileMap { ExeConfigFilename = configFilePath };
var config =
ConfigurationManager.OpenMappedExeConfiguration(
configFileMap, ConfigurationUserLevel.None);
ConfigurationSection section = config.GetSection(sectionName);
return section[keyName].Value;
我在 [keyName] 部分收到一条错误消息,指出“无法在此处访问受保护的内部索引器 'this'”