这有效 -
代码:
class Program
{
static void Main(string[] args)
{
NameValueCollection nvc = ConfigurationManager.GetSection("MyAppSettings") as NameValueCollection;
for(int i=0; i<nvc.Count; i++)
{
Console.WriteLine(nvc.AllKeys[i] + " " + nvc[i]);
}
Console.ReadLine();
}
}
class ParentSection : ConfigurationSection
{
//This may have some custom implementation
}
class MyAppSettingsSection : ParentSection
{
public static MyAppSettingsSection GetConfig()
{
return (MyAppSettingsSection)ConfigurationManager.GetSection("MyAppSettings");
}
[ConfigurationProperty("", IsDefaultCollection = true)]
public NameValueConfigurationCollection Settings
{
get
{
return (NameValueConfigurationCollection)base[""];
}
}
}
配置:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<!-- <section name="MyAppSettings" type="CustomAppSettings.MyAppSettingsSection, CustomAppSettings"/> -->
<section name="MyAppSettings" type="System.Configuration.AppSettingsSection, System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</configSections>
<MyAppSettings>
<add key="1" value="one"/>
<add key="2" value="two"/>
<add key="3" value="three"/>
<add key="4" value="four"/>
</MyAppSettings>
</configuration>
我主要担心的是我的部分需要从自定义部分继承,并且我想在调用 ConfigurationManager.GetSection("MyAppSettings") 时返回 NameValueCollection。
我将 type 属性更改为 AppSettingsSection,即使它在图片中没有任何位置并且它有效。现在我需要弄清楚它是如何工作的,但现在好消息是我有一个工作样本:)
更新:不幸的是,这不是实现预期目标的预期方式,因为现在自定义部分根本没有出现,所以不幸的是,这不是最好的方法。
当然,如果您只是想重命名您的 appsettings 部分,这将非常有用。