Pour permettre à vos éléments de collection de se situer directement dans l'élément parent (et non pas dans un élément de collection enfant), vous devez redéfinir votre fichier ConfigurationProperty
. Par exemple, disons que j'ai un élément de collection tel que :
public class TestConfigurationElement : ConfigurationElement
{
[ConfigurationProperty("name", IsKey = true, IsRequired = true)]
public string Name
{
get { return (string)this["name"]; }
}
}
Et une collection telle que :
[ConfigurationCollection(typeof(TestConfigurationElement), AddItemName = "test")]
public class TestConfigurationElementCollection : ConfigurationElementCollection
{
protected override ConfigurationElement CreateNewElement()
{
return new TestConfigurationElement();
}
protected override object GetElementKey(ConfigurationElement element)
{
return ((TestConfigurationElement)element).Name;
}
}
Je dois définir la section/élément parent comme suit :
public class TestConfigurationSection : ConfigurationSection
{
[ConfigurationProperty("", IsDefaultCollection = true)]
public TestConfigurationElementCollection Tests
{
get { return (TestConfigurationElementCollection)this[""]; }
}
}
Remarquez le [ConfigurationProperty("", IsDefaultCollection = true)]
attribut. En lui donnant un nom vide, et en le définissant comme la collection par défaut, je peux définir ma configuration comme suit :
<testConfig>
<test name="One" />
<test name="Two" />
</testConfig>
Au lieu de :
<testConfig>
<tests>
<test name="One" />
<test name="Two" />
</tests>
</testConfig>