Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AppSettings from custom files

I am struggling with the configuration and setting classes in .NET 2.0

If the following is contaned in a file called app.config

<config>
<appSettings>
<add key="Foo" value="Hello World!"/>
</appSettings>
</config>

I know I can access the appSetting by

// this returns "Hello World!"
ConfigurationManager.AppSettings["Foo"]

However if the file is called app1.config (or any other name) I cannot access the appSetting. As long as I understand, with ConfigurationManager.OpenExeConfiguration I should read custom config setting files.

Configuration conf = ConfigurationManager.OpenExeConfiguration(@"..\..\app1.config");
// this prints an empty string.
Console.WriteLine(conf.AppSettings.Settings["Foo"]);

However conf.AppSettings.Settings["Foo"] returns an empty string.

I have also tried the following code but no success

ExeConfigurationFileMap exeFileMap = new ExeConfigurationFileMap();
exeFileMap.ExeConfigFilename = System.IO.Directory.GetCurrentDirectory()
                                                        + "\\App1.config";
Configuration myConf = ConfigurationManager.OpenMappedExeConfiguration
                                 (exeFileMap, ConfigurationUserLevel.None);
// returns empty string as well
Console.WriteLine(myConf.AppSettings.Settings["Foo"]);

How to read setting from a file not called app.config?

like image 648
user1813 Avatar asked Oct 04 '22 17:10

user1813


2 Answers

I have created custom file myCustomConfiguration and changes its property Copy to Output Directory to true

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="Foo" value="Hello World!"/>
  </appSettings>
</configuration>

In CS file

static void Main(string[] args)
{
    var filePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "myCustomConfiguration.config");
    Dictionary<string, string> dictionary = GetNameValueCollectionSection("appSettings", filePath);

    //To get your key do dictionary["Foo"]
            Console.WriteLine(dictionary["Foo"]);

    Console.ReadLine();
}

private static Dictionary<string, string> GetNameValueCollectionSection(string section, string filePath)
{
    var xDoc = new XmlDocument();
    var nameValueColl = new Dictionary<string, string>();

    var configFileMap = new ExeConfigurationFileMap { ExeConfigFilename = filePath };
    Configuration config = ConfigurationManager.OpenMappedExeConfiguration(configFileMap, ConfigurationUserLevel.None);

    string xml = config.GetSection(section).SectionInformation.GetRawXml();
    xDoc.LoadXml(xml);
    XmlNode xList = xDoc.ChildNodes[0];
    foreach (XmlNode xNodo in xList.Cast<XmlNode>().Where(xNodo => xNodo.Attributes != null))
    {
        nameValueColl.Add(xNodo.Attributes[0].Value, xNodo.Attributes[1].Value);
    }

    return nameValueColl;
}

Although this is working but I am also looking for better approach.

like image 70
Satpal Avatar answered Oct 12 '22 10:10

Satpal


You should make use of a Settings-File, it's way more comfortable to use, has save and load methods and you can name it what ever you want. Eg. my Settings-File is called "EditorSettings.settings" and I access its properties like this:

MyNamespace.MyProject.EditorSettings.Default.MyProperty1
like image 25
Hexo Avatar answered Oct 12 '22 10:10

Hexo