I will be as specific as possible. I have the above configuration that I retrieve and use it. What I want is to change the keywords of "key" to "car" and "value" to "brand Number".
Is this Possible ?
I tried Retrieving the values after changing the keyword names but doesn't work with the current code to retrieve the keys/values.
<!-- Custom section in App.config file. -->
<configSections>
<section
name="CarMapping"
type="System.Configuration.AppSettingsSection" />
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<!-- Mapping the cars to specific brandNumber. -->
<CarMapping>
<add key="1" value="A"/>
<add key="2" value="B"/>
<add key="3" value="C"/>
<add key="4" value="A"/>
<add key="5" value="D" />
</CarMapping>
Code for getting the key/values from App.config file and store it to Dictionary.
// Get the configuration file.
System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
// Get the appSettings section.
AppSettingsSection appSettings = (AppSettingsSection)config.GetSection("CarMapping");
// Get the settings collection (key/value pairs).
foreach (string key in appSettings.Settings.AllKeys)
{
string value = appSettings.Settings[key].Value;
string keyValue = appSettings.Settings[key].Key;
Console.WriteLine(appSettings.Settings[key].Key);
MyDectionary.Add(keyValue, value); }
This is what I want. Please let me know the code for retrieving the "car" and "brandNumber". Thank you in advance.
<!-- Mapping the cars to specific brandNumber. -->
<CarMapping>
<add car="1" brandNumber="A"/>
<add car="2" brandNumber="B"/>
<add car="3" brandNumber="C"/>
<add car="4" brandNumber="A"/>
<add car="5" brandNumber="D" />
</CarMapping>
You'll need to create your own specialized overloads to get that working. For your specific configuration file requirements you'll need three new classes: One to handle the section, one to handle the Collection and one to handle the element in that collection.
Section
The configuration section is the top-level container for your config. It doubles for the Collection container as well. The override of the Properties member does that by returning the configuration property for being a collection.
Collection
This is a default, straightforward implementation of an configuration collection. It acts as a factory for new CarElements.
ConfigurationElement
The CarElement class is capable of deserializing the new attributes car and Brandnumber. I assumed the car is the key here. That can be changed though.
When you want to leverage this, you have to make this change in your app.config to bring your own classes into play:
Make sure to fully qualify the type, so both the type AND assemblyname.
Reading the car mappings is done with this code: