使用ConfigurationManager的OpenExeConfiguration和GetSection,(自定义配置文件和部分)

时间:2012-01-23 16:05:27

标签: c# .net

是否可以从app.config或web.config以外的配置文件中检索自定义配置部分。

我尝试使用System.Configuration.ConfigurationManager的OpenExeConfiguration和GetSection方法调用,但没有运气。我的目的是为可互换的进程适配器定义自定义配置节,并在除app.config和web.config之外的单独配置文件中包含自定义配置节。我看到很多关于appsettings和connectiontrings的例子。

static private DigiKeyReadTaskConfigSection digiKeyReadTaskConfigSection;
  static DigiKeyReadTaskConfigSection DigiKeyReadTaskConfigSection {
     get {
        if (digiKeyReadTaskConfigSection == null) {
           digiKeyReadTaskConfigSection = (DigiKeyReadTaskConfigSection)ConfigurationManager.OpenExeConfiguration("ReadTask.config").GetSection("DigiKeyReadTaskConfigSection");
        }
        return digiKeyReadTaskConfigSection;
     }
  }

digiKeyReadTaskConfigSection = (DigiKeyReadTaskConfigSection)ConfigurationManager.OpenExeConfiguration调用似乎正在运行,但(DigiKeyReadTaskConfigSection)ConfigurationManager.OpenExeConfiguration("ReadTask.config").GetSection("DigiKeyReadTaskConfigSection")返回null。

ReadTask.config文件位于App的bin文件中:

   <configuration>   <configSections>
        <section name="DigiKeyReadTaskConfigSection" type="DataReadInc.WebSiteRead.TaskConfigSection.DigiKeyReadTaskConfigSection, DataReadInc.WebSiteRead" />
        <section name="ArrowReadTaskConfigSection" type="DataReadInc.WebSiteRead.TaskConfigSection.ArrowReadTaskConfigSection, DataReadInc.WebSiteRead" />   </configSections>   <DigiKeyReadTaskConfigSection DigiKeySiteURL="http://search.digikey.com/scripts/DkSearch/dksus.dll?WT.z_header=search_go&amp;lang=en&amp;site=us&amp;keywords="
                                    SiteLogInURL="https://ordering.digikey.com/RegisteredUser/Login.aspx,formName=" SiteLoginId="X" SiteLoginPassword="X" />   <ArrowReadTaskConfigSection ArrowAmericaSiteURL="http://components.arrow.com/part/search/"
                                      SiteLoginURL="http://components.arrow.com/login/processlogin#" SiteLoginId="X" SiteLoginPassword="X" /> </configuration>

我已经看到使用Spring.Net和J2EE实现的这种类型的设置,所以我相信它是可能的。我可以将自定义配置部分放在App.config或web.config文件中,但是在它们自己的配置文件中存在它们会更加清晰。

1 个答案:

答案 0 :(得分:2)

使用ConfigurationManager.OpenMappedExeConfiguration()OpenExeConfiguration与某个exe有关。