The ConfigurationManager class allows you to access machine, application, and user configuration information. This class replaces the ConfigurationSettings class, which is deprecated.
Client applications run on the client computer, while Web applications run on the server computer that the client is connected to.
You can use the built-in System.Configuration types or derive from them to handle configuration information. Using these types, you can work directly with configuration information and you can extend configuration files to include custom information.
The ConfigurationManager class includes members that allow you to perform the following tasks.
-
Read a section from a configuration file. To access configuration information, call the GetSection method. For some sections such as appSettings and connectionStrings, use the AppSettings and ConnectionStrings classes. These members perform read-only operations, use a single cached instance of the configuration, and are multithread aware.
-
Read and write configuration files as a whole. Your application can read and write configuration settings at any level, for itself or for other applications or computers, locally or remotely. Use one of the methods provided by the ConfigurationManager class to open a configuration file such as SampleApp.exe.config. These methods return a Configuration object that in turn exposes methods and properties you can use to work with the associated configuration files. The methods perform read or write operations and recreate the configuration data every time a file is written.
-
Support configuration tasks. The following types are used to support various configuration tasks:
In addition to working with existing configuration information, you can create and work with custom configuration elements by extending the built-in configuration types such as the ConfigurationElement, ConfigurationElementCollection, ConfigurationProperty, and ConfigurationSection classes. For an example of how to extend a built-in configuration type programmatically, see ConfigurationSection. For an example of how to extend a built-in configuration type using the attribute-based model, see ConfigurationElement.
Notes to Implementers
The
Configuration class allows programmatic access for editing configuration files. You use one of the Open methods provided by
ConfigurationManager. These methods return a
Configuration object, which in turn provides the required methods and properties to handle the underlying configuration files. You can access these files for reading or writing.
To read the configuration files, use
GetSection or
GetSectionGroup to read configuration information. The user or process that reads must have the following permissions:
If your application needs read-only access to its own configuration, it is recommended that you use of the
GetSection method. This method provides access to the cached configuration values for the current application, which has better performance than the
Configuration class.
To write to the configuration files, use one of the
Save methods. The user or process that writes must have the following permissions: