up vote 2 down vote favorite
share [g+] share [fb]

I have an XML file that contains database settings that may change depending on where it is read. Preferably, I would read those settings from some configuration file. How can this be done?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

You can use the System.Xml.Serialization.XmlSerializer class to automatically pull the settings into a custom class.

Create a class with your settings:

public class Settings
{
    private string connectionString;

    public string ConnectionString
    {
        get { return connectionString; }
        set { connectionString = value; }
    }
}

Then use the following to pickup data:

Settings settings = new Settings();
FileStream filestream = new FileStream("settings.xml", FileMode.Open);
System.Xml.Serialization.XmlSerializer cereals = new System.Xml.Serialization.XmlSerializer(typeof(Settings));
settings = cereals.Deserialize(filestream);

Likewise, if you want to assign the current object to the settings file, do this:

XmlSerializer cereals = new XmlSerializer(typeof(Settings));
System.IO.FileStream writer = new FileStream("settings.xml", FileMode.Create);
cereals.Serialize(writer, settings);

In this case the "settings.xml" file is in the current directory, but I normally put it in the User's app data folder, because you can always write to that.

link|improve this answer
One of the things to remember with the XMLSerializer is that it can't serialize Dictionary<> objects. However, you can write your own XMLSerialization methods by implementing the IXmlSerializable interface. – Navaar Jun 3 '09 at 14:16
feedback

You can either use the app.config file, or create your own XML file to store them

http://stackoverflow.com/questions/114527/simplest-way-to-have-a-configuration-file-in-a-windows-forms-c-application

link|improve this answer
feedback

Try my following post on this subject, very similar to the proposed solution by Dave above but just with a bit more flesh. http://www.picnet.com.au/blogs/Guido/post/2009/09/10/XML-Settings-Files-No-more-webconfig.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.