プロジェクトにカスタム構成セクションを実装したいと考えています。しかし、私が理解していないのでうまくいきません。
次のような 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>
ConfigurationElement、ConfigurationElementCollection、および ConfigurationSection を含むDepartmentSection.csというファイルを作成します。クラスは次のようになります。
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];