I am trying to retrieve some information from a .config file. I need to search for specific tags and get the attributes in those tags. For example in application tag i need to get the attribute path. I don't need any other information from the .config file. I was just going through XmlTextReader but then realised i need a config file and don't know if it is the right way.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
I found And you must read this great article about Also found Read config file using XMl reader |
|||
|
|
|
The right way is using a ConfigurationElement descendant. For each section in app.config / web.config you have a specific class to manage that section. If you need to modify the app.config / web.config file, you can use the ConfigurationManager class. |
|||
|
|
|
Here's a link that shows you how you can read and even modify the sites section of the applicationHost.config file: http://www.iis.net/ConfigReference/system.applicationHost/sites |
|||
|
|
|
see this post stack over flow How can I change an attribute value of a XML file in c# ?? |
|||
|
|
ConfigurationManager– V4Vendetta Jun 29 '11 at 7:11