我想在项目中实现自定义配置部分。但是我不明白的东西所以不工作。
我的 App.config 看起来像这样:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="DepartmentConfigurationSection" type="Statistics.Config.DepartmentSection , Program1"/>
</configSections>
<s>
<Cash>
<add Number="1" Name="Money" />
</Cash>
<Departments>
<add Id="1" Name="x" />
<add Id="2" Name="y" />
</Departments>
</s>
</configuration>
我创建了一个名为DepartmentSection.cs的文件,它包含 ConfigurationElement、ConfigurationElementCollection 和 ConfigurationSection。类是这样的:
public class DepartmentConfig : ConfigurationElement
{
public DepartmentConfig() { }
public DepartmentConfig(int id, string name)
{
Id = id;
Name = name;
}
[ConfigurationProperty("Id", IsRequired = true, IsKey = true)]
public int Id
{
get { return (int)this["Id"]; }
set { this["Id"] = value; }
}
[ConfigurationProperty("Name", IsRequired = true, IsKey = false)]
public string Name
{
get { return (string)this["Name"]; }
set { this["Name"] = value; }
}
}
public class DepartmentCollection : ConfigurationElementCollection
{
public DepartmentCollection()
{
Console.WriteLine("ServiceCollection Constructor");
}
public DepartmentConfig this[int index]
{
get { return (DepartmentConfig)BaseGet(index); }
set
{
if (BaseGet(index) != null)
{
BaseRemoveAt(index);
}
BaseAdd(index, value);
}
}
public void Add(DepartmentConfig depConfig)
{
BaseAdd(depConfig);
}
public void Clear()
{
BaseClear();
}
protected override ConfigurationElement CreateNewElement()
{
return new DepartmentConfig();
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((DepartmentConfig)element).Id;
}
public void Remove(DepartmentConfig depConfig)
{
BaseRemove(depConfig.Id);
}
public void RemoveAt(int index)
{
BaseRemoveAt(index);
}
public void Remove(string name)
{
BaseRemove(name);
}
}
public class DepartmentConfigurationSection : ConfigurationSection
{
[ConfigurationProperty("Departments", IsDefaultCollection = false)]
[ConfigurationCollection(typeof(DepartmentCollection),
AddItemName = "add",
ClearItemsName = "clear",
RemoveItemName = "remove")]
public DepartmentCollection Departments
{
get
{
return (DepartmentCollection)base["Departments"];
}
}
}
我试图从处理程序中获取集合但没有成功。我试过这样,但给了我这个错误:“无法初始化系统配置”。
DepartmentConfigurationSection serviceConfigSection =
ConfigurationManager.GetSection("s") as DepartmentConfigurationSection;
DepartmentConfig serviceConfig = serviceConfigSection.Departments[0];