ConfigurationSection ConfigurationManager.GetSection()始终返回null

时间:2011-05-17 21:05:27

标签: c# configurationmanager configurationsection

我正在尝试学习如何使用ConfigurationSection类。我曾经使用IConfigurationSectionHandler,但发布它已被折旧。因此,作为一个好孩子,我正在尝试“正确”的方式。我的问题是它总是返回null。

我有一个控制台应用程序和一个DLL。

class Program
{
    static void Main(string[] args)
    {           
        StandardConfigSectionHandler section = StandardConfigSectionHandler.GetConfiguration();

        string value = section.Value;
    }
}

app config:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <configSections>
    <sectionGroup name="ConfigSectionGroup">
      <section name="ConfigSection" type="Controller.StandardConfigSectionHandler, Controller" />
    </sectionGroup>
  </configSections>

  <ConfigSectionGroup>
    <ConfigSection>
      <test value="1" />
    </ConfigSection>
  </ConfigSectionGroup>

</configuration>
DLL中的

部分处理程序:

namespace Controller
{    
    public class StandardConfigSectionHandler : ConfigurationSection
    {
    private const string ConfigPath = "ConfigSectionGroup/ConfigSection/";

    public static StandardConfigSectionHandler GetConfiguration()
    {
        object section = ConfigurationManager.GetSection(ConfigPath);
        return section as StandardWcfConfigSectionHandler;
    }

    [ConfigurationProperty("value")]
    public string Value
    {
        get { return (string)this["value"]; }
        set { this["value"] = value; }
    }
  }
}

我为“ConfigPath”尝试的值是什么,它将返回null,或者抛出错误,说“test”是一个无法识别的元素。我试过的价值观:

  • ConfigSectionGroup
  • ConfigSectionGroup /
  • ConfigSectionGroup / ConfigSection
  • ConfigSectionGroup / ConfigSection /
  • ConfigSectionGroup / ConfigSection /测试
  • ConfigSectionGroup / ConfigSection /测试/

2 个答案:

答案 0 :(得分:10)

您的代码存在一些问题。

  1. 您总是在null方法中返回GetConfiguration,但我会假设这只是问题,而不是您的实际代码。

  2. 更重要的是,ConfigPath值的格式不正确。你有一个尾部斜杠ConfigSectionGroup/ConfigSection/,删除最后一个斜杠,它就能找到该部分。

  3. 最重要的是,您在配置系统中声明您的部分的方式将期望您的“值”存储在ConfigSection元素的属性中。喜欢这个

    <ConfigSectionGroup>
      <ConfigSection value="foo" />
    </ConfigSectionGroup>
    
  4. 所以,把它们放在一起:

    public class StandardConfigSectionHandler : ConfigurationSection
    {
        private const string ConfigPath = "ConfigSectionGroup/ConfigSection";
    
        public static StandardConfigSectionHandler GetConfiguration()
        {
            return (StandardConfigSectionHandler)ConfigurationManager.GetSection(ConfigPath);
        }
    
        [ConfigurationProperty("value")]
        public string Value
        {
            get { return (string)this["value"]; }
            set { this["value"] = value; }
        }
    }
    

    要详细了解如何配置配置部分,请参阅此优秀的MSDN文档:How to: Create Custom Configuration Sections Using ConfigurationSection。它还包含有关如何在(如测试元素)的子元素中存储配置值的信息。

答案 1 :(得分:1)

我遇到了类似的问题:

ConfigurationManager.GetSection("CompaniesSettings")

我的配置文件:

    <section name="CompaniesSettings" type="Swedbank2015.CompaniesSectionReader, Swedbank2015"/>

我收到了一个错误:

  

无法加载文件或汇编&#39; Swedbank2015&#39;

我找到了有趣的解决方案,我将类文件移动到一个单独的项目中(type = Class Library,name = SwBankConfigHelper)。我将它添加到参考并更改配置文件:

<section name="CompaniesSettings" type=" SwBankConfigHelper.CompaniesSectionReader, SwBankConfigHelper"/>

我的代码工作正常!

CompaniesConfig = new CompaniesConfig((XmlNodeList)ConfigurationManager.GetSection("CompaniesSettings"));