6

我需要从 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'”

4

2 回答 2

8

不幸的是,这并不像听起来那么容易。解决问题的方法是获取文件配置文件,ConfigurationManager然后使用原始 xml。所以,我通常使用以下方法:

private NameValueCollection GetNameValueCollectionSection(string section, string filePath)
{
        string file = filePath;
        System.Xml.XmlDocument xDoc = new System.Xml.XmlDocument();
        NameValueCollection nameValueColl = new NameValueCollection();

        System.Configuration.ExeConfigurationFileMap map = new ExeConfigurationFileMap();
        map.ExeConfigFilename = file;
        Configuration config = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
        string xml = config.GetSection(section).SectionInformation.GetRawXml();
        xDoc.LoadXml(xml);

        System.Xml.XmlNode xList = xDoc.ChildNodes[0];
        foreach (System.Xml.XmlNode xNodo in xList)
        {
            nameValueColl.Add(xNodo.Attributes[0].Value, xNodo.Attributes[1].Value);

        }

        return nameValueColl;
 }

以及方法的调用:

 var bla = GetNameValueCollectionSection("MyCustomTag", @".\XMLFile1.xml");


for (int i = 0; i < bla.Count; i++)
{
    Console.WriteLine(bla[i] + " = " + bla.Keys[i]);
}

结果:

在此处输入图像描述

于 2013-05-14T05:35:56.107 回答
1

Formo 让它变得非常简单,例如:

dynamic config = new Configuration("customSection");
var appBuildDate = config.ApplicationBuildDate<DateTime>();

请参阅配置部分的表格

于 2014-08-28T07:04:39.910 回答