在C#中读取自定义配置节的键值

时间:2013-05-13 14:30:48

标签: c# configuration-files

我需要从app / web.config中的自定义部分读取键值。

我经历了

Reading a key from the Web.Config using ConfigurationManager

How can I retrieve list of custom configuration sections in the .config file using C#?

但是,当我们需要明确指定配置文件的路径时,他们没有指定如何读取自定义部分(在我的情况下,配置文件不在其中的默认位置)

我的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;

我收到错误说明&#34;无法访问受保护的内部索引器&#39;这个&#39;这里&#34;在[keyName]部分

2 个答案:

答案 0 :(得分:7)

不幸的是,这并不像听起来那么容易。解决问题的方法是使用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]);
}

结果:

enter image description here

答案 1 :(得分:1)

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

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

请参阅Formo on Configuration Sections