System.Configuration.ConfigurationManager 10.0.0-rc.2.25502.107

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.

How to Use

The following example shows how to read and modify the application configuration settings.

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 version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="Server" value="example.com"/>
    <add key="Username" value="Admin"/>
  </appSettings>
</configuration>

Main Types

The main types provided by this library are:

  • System.Configuration.Configuration
  • System.Configuration.ConfigurationManager

Additional Documentation

Feedback & Contributing

System.Configuration.ConfigurationManager is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Showing the top 20 packages that depend on System.Configuration.ConfigurationManager.

Packages Downloads
EntityFramework
Entity Framework 6 (EF6) is a tried and tested object-relational mapper for .NET with many years of feature development and stabilization.
5,471
IKVM
Java SE 8 Virtual Machine for .NET
92
IKVM
Java SE 8 Virtual Machine for .NET
90
IKVM
Java SE 8 Virtual Machine for .NET
89
IKVM
Java SE 8 Virtual Machine for .NET
85
IKVM
Java SE 8 Virtual Machine for .NET
82
IKVM
Java SE 8 Virtual Machine for .NET
81
IKVM
Java SE 8 Virtual Machine for .NET
80
IKVM
Java SE 8 Virtual Machine for .NET
79
System.DirectoryServices.AccountManagement
Provides uniform access and manipulation of user, computer, and group security principals across the multiple principal stores: Active Directory Domain Services (AD DS), Active Directory Lightweight Directory Services (AD LDS), and Machine SAM (MSAM). When using NuGet 3.x this package requires at least version 3.4.
78
IKVM
Java SE 8 Virtual Machine for .NET
78
EntityFramework
Entity Framework 6 (EF6) is a tried and tested object-relational mapper for .NET with many years of feature development and stabilization.
77
Microsoft.Windows.Compatibility
This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET Core as well as .NET Standard.
77
IKVM
Java SE 8 Virtual Machine for .NET
77
Quartz
Quartz Scheduling Framework for .NET
77
IKVM
Java SE 8 Virtual Machine for .NET
76

https://go.microsoft.com/fwlink/?LinkID=799421

.NET Framework 4.6.2

  • No dependencies.

.NET 8.0

.NET 9.0

.NET 10.0

.NET Standard 2.0

Version Downloads Last updated
10.0.0-rc.2.25502.107 1 10/15/2025
10.0.0-rc.1.25451.107 6 09/13/2025
10.0.0-preview.7.25380.108 13 08/15/2025
10.0.0-preview.6.25358.103 14 07/16/2025
10.0.0-preview.5.25277.114 15 06/09/2025
10.0.0-preview.4.25258.110 19 05/14/2025
10.0.0-preview.3.25171.5 26 04/12/2025
10.0.0-preview.2.25163.2 23 03/20/2025
10.0.0-preview.1.25080.5 25 02/25/2025
9.0.10 1 10/15/2025
9.0.9 7 09/13/2025
9.0.8 12 08/07/2025
9.0.7 13 07/12/2025
9.0.6 15 06/14/2025
9.0.5 20 05/16/2025
9.0.4 26 04/12/2025
9.0.3 22 03/13/2025
9.0.2 26 02/13/2025
9.0.1 38 01/15/2025
9.0.0 41 11/13/2024
9.0.0-rc.2.24473.5 39 10/09/2024
9.0.0-rc.1.24431.7 32 09/16/2024
9.0.0-preview.7.24405.7 42 08/13/2024
9.0.0-preview.6.24327.7 39 07/10/2024
9.0.0-preview.5.24306.7 34 06/19/2024
9.0.0-preview.4.24266.19 49 05/25/2024
9.0.0-preview.3.24172.9 41 04/12/2024
9.0.0-preview.2.24128.5 42 03/26/2024
9.0.0-preview.1.24080.9 47 02/17/2024
8.0.1 32 10/09/2024
8.0.0 62 11/16/2023
8.0.0-rc.2.23479.6 54 10/23/2023
8.0.0-rc.1.23419.4 53 09/24/2023
8.0.0-preview.7.23375.6 45 08/30/2023
8.0.0-preview.6.23329.7 57 07/15/2023
8.0.0-preview.5.23280.8 59 06/17/2023
8.0.0-preview.4.23259.5 61 05/28/2023
8.0.0-preview.3.23174.8 53 04/26/2023
8.0.0-preview.2.23128.3 52 04/26/2023
8.0.0-preview.1.23110.8 60 02/22/2023
7.0.0 57 11/30/2022
7.0.0-rc.2.22472.3 55 06/26/2023
7.0.0-rc.1.22426.10 49 10/11/2022
7.0.0-preview.7.22375.6 44 08/23/2022
7.0.0-preview.6.22324.4 46 01/29/2023
7.0.0-preview.5.22301.12 55 10/16/2022
7.0.0-preview.4.22229.4 69 06/17/2022
7.0.0-preview.3.22175.4 68 01/29/2023
7.0.0-preview.2.22152.2 60 02/16/2023
7.0.0-preview.1.22076.8 49 08/25/2023
6.0.2 29 11/13/2024
6.0.2-mauipre.1.22102.15 50 11/14/2022
6.0.2-mauipre.1.22054.8 53 11/24/2022
6.0.1 63 11/30/2022
6.0.0 55 11/30/2022
6.0.0-rc.2.21480.5 57 06/01/2022
6.0.0-rc.1.21451.13 58 05/16/2022
6.0.0-preview.7.21377.19 51 01/29/2023
6.0.0-preview.6.21352.12 54 12/11/2022
6.0.0-preview.5.21301.5 52 05/28/2023
6.0.0-preview.4.21253.7 48 01/29/2023
6.0.0-preview.3.21201.4 59 01/29/2023
6.0.0-preview.2.21154.6 62 06/20/2022
6.0.0-preview.1.21102.12 52 07/02/2022
5.0.0 53 11/29/2022
5.0.0-rc.2.20475.5 52 06/28/2023
5.0.0-rc.1.20451.14 51 01/29/2023
5.0.0-preview.8.20407.11 52 07/17/2023
5.0.0-preview.7.20364.11 51 12/30/2022
5.0.0-preview.6.20305.6 58 01/29/2023
5.0.0-preview.5.20278.1 62 01/29/2023
5.0.0-preview.4.20251.6 58 09/18/2022
5.0.0-preview.3.20214.6 58 09/26/2022
5.0.0-preview.2.20160.6 53 12/26/2022
5.0.0-preview.1.20120.5 57 06/25/2023
4.7.0 60 07/28/2022
4.7.0-preview3.19551.4 56 11/30/2022
4.7.0-preview2.19523.17 50 01/29/2023
4.7.0-preview1.19504.10 57 06/08/2022
4.6.0 5,475 07/04/2022
4.6.0-rc1.19456.4 56 12/13/2022
4.6.0-preview9.19421.4 42 06/26/2023
4.6.0-preview9.19416.11 59 06/02/2022
4.6.0-preview8.19405.3 60 06/26/2023
4.6.0-preview7.19362.9 61 05/08/2023
4.6.0-preview6.19303.8 51 12/03/2022
4.6.0-preview6.19264.9 45 07/17/2023
4.6.0-preview5.19224.8 51 05/28/2022
4.6.0-preview4.19212.13 52 06/27/2023
4.6.0-preview3.19128.7 55 05/27/2022
4.6.0-preview.19073.11 59 07/13/2022
4.6.0-preview.18571.3 41 07/08/2023
4.5.0 61 12/21/2022
4.5.0-rc1 54 08/19/2023
4.5.0-preview2-26406-04 65 05/23/2023
4.5.0-preview1-26216-02 45 01/29/2023
4.5.0-preview1-25914-04 50 01/28/2023
4.4.1 54 06/07/2022
4.4.0 57 03/21/2021
4.4.0-preview2-25405-01 60 05/20/2023
4.4.0-preview1-25305-02 52 12/16/2022