Microsoft.Extensions.Configuration.Binder 8.0.0-preview.2.23128.3

About

Provides the functionality to bind an object to data in configuration providers for Microsoft.Extensions.Configuration. This package enables you to represent the configuration data as strongly-typed classes defined in the application code. To bind a configuration, use the Microsoft.Extensions.Configuration.ConfigurationBinder.Get extension method on the IConfiguration object. To use this package, you also need to install a package for the configuration provider, for example, Microsoft.Extensions.Configuration.Json for the JSON provider.

For more information, see the documentation: Configuration in .NET.

Example

The following example shows how to bind a JSON configuration section to .NET objects.

using System;
using Microsoft.Extensions.Configuration;

class Settings
{
    public string Server { get; set; }
    public string Database { get; set; }
    public Endpoint[] Endpoints { get; set; }
}

class Endpoint
{
    public string IPAddress { get; set; }
    public int Port { get; set; }
}

class Program
{
    static void Main()
    {
        // Build a configuration object from JSON file
        IConfiguration config = new ConfigurationBuilder()
            .AddJsonFile("appsettings.json")
            .Build();

        // Bind a configuration section to an instance of Settings class
        Settings settings = config.GetSection("Settings").Get<Settings>();

        // Read simple values
        Console.WriteLine($"Server: {settings.Server}");
        Console.WriteLine($"Database: {settings.Database}");

        // Read nested objects
        Console.WriteLine("Endpoints: ");
        
        foreach (Endpoint endpoint in settings.Endpoints)
        {
            Console.WriteLine($"{endpoint.IPAddress}:{endpoint.Port}");
        }
    }
}

To run this example, include an appsettings.json file with the following content in your project:

{
  "Settings": {
    "Server": "example.com",
    "Database": "Northwind",
    "Endpoints": [
      {
        "IPAddress": "192.168.0.1",
        "Port": "80"
      },
      {
        "IPAddress": "192.168.10.1",
        "Port": "8080"
      }
    ]
  }
}

You can include a configuration file using a code like this in your .csproj file:

<ItemGroup>
  <Content Include="appsettings.json">
    <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  </Content>
</ItemGroup>

Showing the top 20 packages that depend on Microsoft.Extensions.Configuration.Binder.

Packages Downloads
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
5,452
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
5,410
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
5,402
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
2,725
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
2,714
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
2,708
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
2,696
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
2,685
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
619
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
615
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
516
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
516
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
510
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
96
Microsoft.Extensions.OptionsModel
Provides a strongly typed way of specifying and accessing settings using dependency injection.
92
Microsoft.AspNetCore.Server.Kestrel.Core
Core components of ASP.NET Core Kestrel cross-platform web server.
80
Microsoft.AspNetCore.Server.Kestrel.Core
Core components of ASP.NET Core Kestrel cross-platform web server.
79
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
75
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications. When using NuGet 3.x this package requires at least version 3.4.
75
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
74

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

.NET Framework 4.6.2

.NET 6.0

.NET 7.0

.NET 8.0

.NET Standard 2.0

Version Downloads Last updated
10.0.0 1 11/13/2025
10.0.0-rc.2.25502.107 6 10/15/2025
10.0.0-rc.1.25451.107 14 09/11/2025
10.0.0-preview.7.25380.108 11 08/14/2025
10.0.0-preview.6.25358.103 16 07/17/2025
10.0.0-preview.5.25277.114 17 06/14/2025
10.0.0-preview.4.25258.110 20 05/15/2025
10.0.0-preview.3.25171.5 25 04/11/2025
10.0.0-preview.2.25163.2 22 03/26/2025
10.0.0-preview.1.25080.5 26 02/26/2025
9.0.11 0 11/11/2025
9.0.10 9 10/15/2025
9.0.9 8 09/12/2025
9.0.8 13 08/07/2025
9.0.7 10 07/10/2025
9.0.6 16 06/13/2025
9.0.5 18 05/15/2025
9.0.4 21 04/12/2025
9.0.3 20 03/12/2025
9.0.2 31 02/12/2025
9.0.1 26 01/22/2025
9.0.0 619 11/13/2024
9.0.0-rc.2.24473.5 29 10/12/2024
9.0.0-rc.1.24431.7 43 09/16/2024
9.0.0-preview.7.24405.7 35 08/13/2024
9.0.0-preview.6.24327.7 41 07/10/2024
9.0.0-preview.5.24306.7 45 06/11/2024
9.0.0-preview.4.24266.19 37 05/26/2024
9.0.0-preview.3.24172.9 48 04/12/2024
9.0.0-preview.2.24128.5 51 03/14/2024
9.0.0-preview.1.24080.9 40 02/23/2024
8.0.2 3,601 07/10/2024
8.0.1 1,971 01/17/2024
8.0.0 5,499 11/17/2023
8.0.0-rc.2.23479.6 55 10/10/2023
8.0.0-rc.1.23419.4 66 09/14/2023
8.0.0-preview.7.23375.6 54 08/30/2023
8.0.0-preview.6.23329.7 60 07/11/2023
8.0.0-preview.5.23280.8 65 06/28/2023
8.0.0-preview.4.23259.5 62 05/20/2023
8.0.0-preview.3.23174.8 56 04/30/2023
8.0.0-preview.2.23128.3 65 04/30/2023
8.0.0-preview.1.23110.8 60 02/22/2023
7.0.4 518 04/30/2023
7.0.3 62 05/14/2023
7.0.2 75 01/24/2023
7.0.1 76 12/27/2022
7.0.0 529 12/07/2022
7.0.0-rc.2.22472.3 66 06/28/2023
7.0.0-rc.1.22426.10 76 10/26/2022
7.0.0-preview.7.22375.6 63 10/30/2022
7.0.0-preview.6.22324.4 58 10/16/2022
7.0.0-preview.5.22301.12 64 06/27/2023
7.0.0-preview.4.22229.4 53 06/30/2023
7.0.0-preview.3.22175.4 54 07/04/2023
7.0.0-preview.2.22152.2 65 06/29/2023
7.0.0-preview.1.22076.8 55 06/29/2023
6.0.2-mauipre.1.22102.15 77 05/27/2022
6.0.2-mauipre.1.22054.8 53 06/29/2023
6.0.1 37 11/13/2024
6.0.0 2,712 12/07/2021
6.0.0-rc.2.21480.5 63 06/26/2023
6.0.0-rc.1.21451.13 59 06/28/2023
6.0.0-preview.7.21377.19 65 05/27/2022
6.0.0-preview.6.21352.12 56 07/02/2023
6.0.0-preview.5.21301.5 57 06/29/2023
6.0.0-preview.4.21253.7 50 06/29/2023
6.0.0-preview.3.21201.4 56 05/27/2022
6.0.0-preview.2.21154.6 58 05/27/2022
6.0.0-preview.1.21102.12 73 08/10/2022
5.0.0 78 05/26/2022
5.0.0-rc.2.20475.5 56 06/16/2023
5.0.0-rc.1.20451.14 69 12/02/2022
5.0.0-preview.8.20407.11 56 07/02/2023
5.0.0-preview.7.20364.11 58 05/27/2022
5.0.0-preview.6.20305.6 64 06/28/2023
5.0.0-preview.5.20278.1 53 05/27/2022
5.0.0-preview.4.20251.6 55 05/27/2022
5.0.0-preview.3.20215.2 63 05/27/2022
5.0.0-preview.2.20160.3 59 06/30/2023
5.0.0-preview.1.20120.4 66 05/27/2022
3.1.32 51 05/05/2023
3.1.31 57 05/10/2023
3.1.30 63 04/22/2023
3.1.29 58 04/21/2023
3.1.28 55 05/02/2023
3.1.27 75 11/27/2022
3.1.26 59 03/21/2023
3.1.25 63 05/28/2022
3.1.24 62 05/27/2022
3.1.23 65 03/15/2023
3.1.22 56 03/22/2023
3.1.21 61 05/28/2022
3.1.20 56 03/22/2023
3.1.19 58 05/17/2023
3.1.18 59 11/04/2022
3.1.17 55 04/19/2023
3.1.16 63 11/02/2022
3.1.15 79 05/27/2022
3.1.14 52 03/30/2023
3.1.13 60 04/10/2023
3.1.12 60 09/24/2022
3.1.11 62 06/11/2022
3.1.10 51 02/19/2023
3.1.9 60 03/28/2023
3.1.8 62 05/27/2022
3.1.7 59 11/09/2020
3.1.6 60 05/22/2023
3.1.5 70 03/31/2023
3.1.4 61 04/09/2023
3.1.3 74 02/25/2023
3.1.2 70 05/27/2022
3.1.1 72 06/30/2023
3.1.0 520 07/11/2022
3.1.0-preview3.19553.2 58 05/27/2022
3.1.0-preview2.19525.4 58 05/27/2022
3.1.0-preview1.19506.1 55 06/27/2023
3.0.3 69 06/07/2023
3.0.2 63 05/27/2022
3.0.1 67 05/03/2023
3.0.0 60 12/31/2022
3.0.0-rc1.19456.10 69 05/27/2022
3.0.0-preview9.19423.4 58 05/27/2022
3.0.0-preview8.19405.4 63 06/30/2023
3.0.0-preview7.19362.4 61 04/11/2023
3.0.0-preview6.19304.6 61 10/23/2022
3.0.0-preview5.19227.9 58 11/08/2022
3.0.0-preview4.19216.2 70 05/28/2022
3.0.0-preview3.19153.1 60 05/27/2022
3.0.0-preview.19074.2 59 06/27/2023
3.0.0-preview.18572.1 54 05/27/2022
2.2.4 65 05/27/2022
2.2.0 85 09/21/2022
2.2.0-preview3-35497 62 04/10/2023
2.2.0-preview2-35157 72 05/27/2022
2.2.0-preview1-35029 51 05/27/2022
2.1.10 61 08/24/2022
2.1.1 2,677 05/27/2022
2.1.0 65 05/27/2022
2.1.0-rc1-final 76 05/27/2022
2.1.0-preview2-final 63 10/29/2022
2.1.0-preview1-final 66 05/27/2022
2.0.2 57 05/27/2022
2.0.1 63 11/25/2022
2.0.0 58 06/07/2022
2.0.0-preview2-final 58 04/05/2023
2.0.0-preview1-final 65 03/29/2023
1.1.2 76 11/12/2022
1.1.1 73 12/13/2021
1.1.0 57 04/20/2023
1.1.0-preview1-final 71 05/27/2022
1.0.2 62 12/24/2021
1.0.1 57 11/15/2022
1.0.0 56 06/26/2023
1.0.0-rc2-final 65 11/27/2022
1.0.0-rc1-final 65 05/27/2022