-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add markdown readme for System.Configuration.ConfigurationManager (#7…
…2772) * Update System.Configuration.ConfigurationManager.csproj Co-authored-by: Dan Moseley <[email protected]>
- Loading branch information
1 parent
b966a10
commit 6b3f3e9
Showing
2 changed files
with
71 additions
and
5 deletions.
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
src/libraries/System.Configuration.ConfigurationManager/src/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
## About | ||
|
||
Provides types that support using XML configuration files (`app.config`). This package exists only to support migrating existing .NET Framework code that already uses System.Configuration. When writing new code, use another configuration system instead, such as [Microsoft.Extensions.Configuration](https://www.nuget.org/packages/Microsoft.Extensions.Configuration/). | ||
|
||
For more information, see the documentation: | ||
|
||
- [Configure apps by using configuration files](https://docs.microsoft.com/dotnet/framework/configure-apps/) | ||
- [System.Configuration namespace](https://docs.microsoft.com/dotnet/api/system.configuration) | ||
- [System.Configuration.Configuration](https://docs.microsoft.com/dotnet/api/system.configuration.configuration) | ||
- [System.Configuration.ConfigurationManager](https://docs.microsoft.com/dotnet/api/system.configuration.configurationmanager) | ||
|
||
## Example | ||
|
||
The following example shows how to read and modify the application configuration settings. | ||
|
||
```cs | ||
using System; | ||
using System.Configuration; | ||
|
||
class Program | ||
{ | ||
static void Main() | ||
{ | ||
try | ||
{ | ||
// Open current application configuration | ||
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); | ||
KeyValueConfigurationCollection section = config.AppSettings.Settings; | ||
|
||
// Print settings from configuration file | ||
foreach (string key in section.AllKeys) | ||
{ | ||
Console.WriteLine($"{key}: {section[key].Value}"); | ||
} | ||
|
||
// Add new setting | ||
section.Add("Database", "TestDatabase"); | ||
|
||
// Change existing setting | ||
section["Username"].Value = "TestUser"; | ||
|
||
// Save changes to file | ||
config.Save(ConfigurationSaveMode.Modified); | ||
ConfigurationManager.RefreshSection(config.AppSettings.SectionInformation.Name); | ||
} | ||
catch (ConfigurationErrorsException ex) | ||
{ | ||
Console.WriteLine("Error reading configuration: "); | ||
Console.WriteLine(ex.Message); | ||
} | ||
} | ||
} | ||
``` | ||
|
||
To run this example, include an `app.config` file with the following content in your project: | ||
|
||
```xml | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<appSettings> | ||
<add key="Server" value="example.com"/> | ||
<add key="Username" value="Admin"/> | ||
</appSettings> | ||
</configuration> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters