Sono un principiante con sezioni di configurazione C#
Voglio creare una sezione personalizzata nel file di configurazione. Quello che ho provato dopo googling è come segue
Config del file:
Sezione di configurazione personalizzata in App.config C#
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<sectionGroup name="MyCustomSections">
<section name="CustomSection" type="CustomSectionTest.CustomSection,CustomSection"/>
</sectionGroup>
</configSections>
<MyCustomSections>
<CustomSection key="Default"/>
</MyCustomSections>
</configuration>
CustomSection.cs
namespace CustomSectionTest
{
public class CustomSection : ConfigurationSection
{
[ConfigurationProperty("key", DefaultValue="Default", IsRequired = true)]
[StringValidator(InvalidCharacters = "[email protected]#$%^&*()[]{}/;'\"|\\", MinLength = 1, MaxLength = 60)]
public String Key
{
get { return this["key"].ToString(); }
set { this["key"] = value; }
}
}
}
Quando uso questo codice per recuperare Sezione I ottenere un errore che dice errore di configurazione.
var cf = (CustomSection)System.Configuration.ConfigurationManager.GetSection("CustomSection");
Che cosa mi manca?
Grazie.
Modifica
Che cosa ho bisogno in ultima analisi, è
<CustomConfigSettings>
<Setting id="1">
<add key="Name" value="N"/>
<add key="Type" value="D"/>
</Setting>
<Setting id="2">
<add key="Name" value="O"/>
<add key="Type" value="E"/>
</Setting>
<Setting id="3">
<add key="Name" value="P"/>
<add key="Type" value="F"/>
</Setting>
</CustomConfigSettings>
Si prega di consultare le seguenti domande: http://stackoverflow.com/questions/3935331/how-to-implement-a-configurationection-with-a-configurationelementcollection http://stackoverflow.com/questions/7983127/custom- configurationsection http://stackoverflow.com/questions/4738/using-configurationmanager-to-load-config-from-an-arbitrary-location – bytebuster