ConfigurationManager Class 프로그래밍/C#2017. 7. 5. 07:17
- ConfigurationManager Class
ConfigurationManager Class
https://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager(v=vs.110).aspx
Provides access to configuration files for client applications. This class cannot be inherited.
Namespace: System.ConfigurationAssembly: System.Configuration (in System.Configuration.dll)
Properties
Name | Description | |
---|---|---|
![]() ![]() | AppSettings | Gets the AppSettingsSection data for the current application's default configuration. |
![]() ![]() | ConnectionStrings | Gets the ConnectionStringsSection data for the current application's default configuration. |
Methods
Name | Description | |
---|---|---|
![]() ![]() | GetSection(String) | Retrieves a specified configuration section for the current application's default configuration. |
![]() ![]() | OpenExeConfiguration(ConfigurationUserLevel) | Opens the configuration file for the current application as a Configurationobject. |
![]() ![]() | OpenExeConfiguration(String) | Opens the specified client configuration file as a Configuration object. |
![]() ![]() | OpenMachineConfiguration() | Opens the machine configuration file on the current computer as a Configuration object. |
![]() ![]() | OpenMappedExeConfiguration(ExeConfigurationFileMap, ConfigurationUserLevel) | Opens the specified client configuration file as a Configuration object that uses the specified file mapping and user level. |
![]() ![]() | OpenMappedExeConfiguration(ExeConfigurationFileMap, ConfigurationUserLevel, Boolean) | Opens the specified client configuration file as a Configuration object that uses the specified file mapping, user level, and preload option. |
![]() ![]() | OpenMappedMachineConfiguration(ConfigurationFileMap) | Opens the machine configuration file as a Configuration object that uses the specified file mapping. |
![]() ![]() | RefreshSection(String) | Refreshes the named section so the next time that it is retrieved it will be re-read from disk. |
Remarks
The ConfigurationManager class enables you to access machine, application, and user configuration information. This class replaces the ConfigurationSettings class, which is deprecated. For web applications, use the WebConfigurationManager class.
To use the ConfigurationManager class, your project must reference the System.Configuration assembly. By default, some project templates, like Console Application, do not reference this assembly so you must manually reference it.
![]() |
---|
The name and location of the application configuration file depend on the application's host. For more information, see NIB: Application Configuration Files. |
You can use the built-in System.Configuration types or derive from them to handle configuration information. By 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 enable 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 create the configuration data every time that 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 that uses the attribute-based model, see ConfigurationElement.
Notes to Implementers:
The Configuration class enables 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:
Read permission on the configuration file at the current configuration hierarchy level.
Read permissions on all the parent configuration files.
If your application needs read-only access to its own configuration, we recommend that you use 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:
Write permission on the configuration file and directory at the current configuration hierarchy level.
Read permissions on all the configuration files.
Examples
The first example shows a simple console application that reads application settings, adds a new setting, and updates an existing setting.
using System; using System.Configuration; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { ReadAllSettings(); ReadSetting("Setting1"); ReadSetting("NotValid"); AddUpdateAppSettings("NewSetting", "May 7, 2014"); AddUpdateAppSettings("Setting1", "May 8, 2014"); ReadAllSettings(); } static void ReadAllSettings() { try { var appSettings = ConfigurationManager.AppSettings; if (appSettings.Count == 0) { Console.WriteLine("AppSettings is empty."); } else { foreach (var key in appSettings.AllKeys) { Console.WriteLine("Key: {0} Value: {1}", key, appSettings[key]); } } } catch (ConfigurationErrorsException) { Console.WriteLine("Error reading app settings"); } } static void ReadSetting(string key) { try { var appSettings = ConfigurationManager.AppSettings; string result = appSettings[key] ?? "Not Found"; Console.WriteLine(result); } catch (ConfigurationErrorsException) { Console.WriteLine("Error reading app settings"); } } static void AddUpdateAppSettings(string key, string value) { try { var configFile = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); var settings = configFile.AppSettings.Settings; if (settings[key] == null) { settings.Add(key, value); } else { settings[key].Value = value; } configFile.Save(ConfigurationSaveMode.Modified); ConfigurationManager.RefreshSection(configFile.AppSettings.SectionInformation.Name); } catch (ConfigurationErrorsException) { Console.WriteLine("Error writing app settings"); } } } }
The previous example assumes your project has an App.config file as shown below.
<?xml version="1.0" encoding="utf-8" ?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <appSettings> <add key="Setting1" value="May 5, 2014"/> <add key="Setting2" value="May 6, 2014"/> </appSettings> </configuration>
The following example shows how to use a connection string to read data from a database.
using System; using System.Configuration; using System.Data.SqlClient; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { ReadProducts(); } static void ReadProducts() { var connectionString = ConfigurationManager.ConnectionStrings["WingtipToys"].ConnectionString; string queryString = "SELECT Id, ProductName FROM dbo.Products;"; using (var connection = new SqlConnection(connectionString)) { var command = new SqlCommand(queryString, connection); connection.Open(); using (var reader = command.ExecuteReader()) { while (reader.Read()) { Console.WriteLine(String.Format("{0}, {1}", reader[0], reader[1])); } } } } } }
The previous example assumes your project has an App.config as shown below.
<?xml version="1.0" encoding="utf-8" ?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> </startup> <connectionStrings> <add name="WingtipToys" connectionString="Data Source=(LocalDB)\v11.0;Initial Catalog=WingtipToys;Integrated Security=True;Pooling=False" /> </connectionStrings> </configuration>
'프로그래밍 > C#' 카테고리의 다른 글
Programming guide - Events (0) | 2017.08.01 |
---|---|
Programming guide - Enumeration Types (0) | 2017.08.01 |
C# Programming Guide - Delegates (0) | 2017.06.18 |
C# Programming Guide - Classes and Structs (0) | 2017.05.16 |
C# Programming Guide - Main() and Command-Line Arguments (0) | 2017.05.10 |