6

当您使用应用程序的当前配置文件时,从使用由 System.Configuration.NameValueSectionHandler 定义的部分的配置文件中获取值很容易。

示例配置文件。

<configuration>
  <configSections>
    <section name="MyParams" type="System.Configuration.NameValueSectionHandler" />
  </configSections>

  <MyParams>
    <add key="FirstParam" value="One"/>
    <add key="SecondParam" value="Two"/>
  </MyParams>
</configuration>

易于阅读的示例代码。

NameValueCollection myParamsCollection =
   ConfigurationManager.GetSection("MyParams") as NameValueCollection;

这是不起作用的代码。

NameValueCollection collection =
  ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None)
  .GetSection("MyParams") as NameValueCollection;

这在编译时失败并出现以下错误。

无法通过引用转换、装箱转换、拆箱转换、包装转换或空类型转换将类型“System.Configuration.ConfigurationSection”转换为“System.Collections.Specialized.NameValueCollection”。

ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None) 返回 System.Configuration.Configuration,Configuration.GetSection 返回 ConfigurationSection。

ConfigurationManager.GetSection 返回对象。

那么,当我必须使用 OpenExeConfiguration 时,如何取回我的 NameValueCollection?

4

1 回答 1

12

我从两年前遇到了自己的答案。

NameValueSectionHandler - 我可以使用这个部分类型来写回应用程序配置文件吗?

这是我解决当前问题的方法。

ExeConfigurationFileMap configFileMap = new ExeConfigurationFileMap() { 
   ExeConfigFilename = "path to config here" 
    };

Configuration config = ConfigurationManager.OpenMappedExeConfiguration(
   configFileMap, ConfigurationUserLevel.None);

ConfigurationSection myParamsSection = config.GetSection("MyParams");

string myParamsSectionRawXml = myParamsSection .SectionInformation.GetRawXml();
XmlDocument sectionXmlDoc = new XmlDocument();
sectionXmlDoc.Load(new StringReader(myParamsSectionRawXml ));
NameValueSectionHandler handler = new NameValueSectionHandler();

NameValueCollection handlerCreatedCollection = 
   handler.Create(null, null, sectionXmlDoc.DocumentElement) as NameValueCollection;

Console.WriteLine(handlerCreatedCollection.Count);

适用于任何传统 IConfigurationSectionHandler 类型 NameValueSectionHandler、DictionarySectionHandler、SingleTagSectionHandler 的方法。

public static object GetConfigurationValues(string configFileName, string sectionName)
{
    ExeConfigurationFileMap configFileMap = new ExeConfigurationFileMap() { ExeConfigFilename = configFileName };
    Configuration config = ConfigurationManager.OpenMappedExeConfiguration(configFileMap, ConfigurationUserLevel.None);
    ConfigurationSection section = config.GetSection(sectionName);
    string xml = section.SectionInformation.GetRawXml();
    XmlDocument doc = new XmlDocument();
    doc.Load(XmlReader.Create(new StringReader(xml)));
    string type = section.SectionInformation.Type;
    string assemblyName = typeof(IConfigurationSectionHandler).Assembly.GetName().FullName;
    ObjectHandle configSectionHandlerHandle = Activator.CreateInstance(assemblyName, section.SectionInformation.Type);
    if (configSectionHandlerHandle != null)
    {
        IConfigurationSectionHandler handler = configSectionHandlerHandle.Unwrap() as IConfigurationSectionHandler;
        return handler.Create(null, null, doc.DocumentElement);
    }
    return null;
}
于 2012-12-11T17:25:09.597 回答