繁体   English   中英

如何在不更改节顺序的情况下使用ConfigurationManager.GetSection(columnsSectionName)获取.config文件的内容?

[英]How to get contents of a .config file using ConfigurationManager.GetSection(columnsSectionName) without altering the sections' order?

在我的配置部分,我有以下内容:

<configuration>
  <configSections>
    <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
    <section name="NFeColumns" type="System.Configuration.DictionarySectionHandler" />
    <section name="CTeColumns" type="System.Configuration.DictionarySectionHandler" />
  </configSections>

  <appSettings>
    <add key="csv.separator" value=";" />
    <add key="infNFe.columns" value="NFeColumns"/>
    <add key="infCte.columns" value="CTeColumns"/>
    <add key="infNFe.filename" value=".\Extracted\NFeCollection.csv"/>
    <add key="infCte.filename" value=".\Extracted\CTeCollection.csv"/>
  </appSettings>

  <NFeColumns>
    <add key="infNFe.Id"  value="Id" />
    <add key="ide.cUF"    value="cUF" />
    <add key="dest.CNPJ"  value="CNPJ" />
    <add key="dest.xNome" value="xNome" />
    <add key="det.nItem"  value="nItem" />
    <add key="prod.cProd" value="cProd" />
    <add key="prod.xProd" value="xProd" />
    <add key="IPI.cEnq"   value="cEnq" />
  </NFeColumns>

  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  </startup>

</configuration>

我想从中获取值并以与配置文件相同的顺序放入IDictionary中。 我正在这样做:

 string columnsSectionName = ConfigurationManager.AppSettings[colFileName + ".columns"];
            IDictionary columns = (IDictionary)ConfigurationManager.GetSection(columnsSectionName);

但是,我m geting the <NFeColumns> in a totally different order, and I can不知道为什么。 你能帮我么?

ConfigurationManager.GetSection返回HashTable的实例。 哈希表中的项目将不会按照插入顺序存储。 您将必须手动订购它们。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM