当然 - 没有什么能阻止您创建任意数量的自定义配置部分!
尝试这样的事情:
<?xml version="1.0"?>
<configuration>
<!-- define the config sections (and possibly section groups) you want in your config file -->
<configSections>
<section name="SqlConnection" type="System.Configuration.NameValueSectionHandler"/>
<section name="PacConnection" type="System.Configuration.NameValueSectionHandler"/>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
<!-- "implement" those config sections as defined above -->
<SqlConnection>
<add key="abc" value="123" />
</SqlConnection>
<PacConnection>
<add key="abc" value="234" />
</PacConnection>
</configuration>
System.Configuration.NameValueSectionHandler
是用于包含<add key="...." value="....." />
条目(如<appSettings>
)的配置部分的默认类型。
要获取值,只需使用以下内容:
NameValueCollection sqlConnConfig = ConfigurationManager.GetSection("SqlConnection") as NameValueCollection;
string valueForAbc = sqlConnConfig["abc"];
如果您自己定义了其中一些,您可以完全混合和匹配 .NET 定义的现有部分处理程序类型以及您自己的自定义配置部分 - 只需使用您需要的任何内容!