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
QC.Store.Model
Package Description
105
Sentry.AspNetCore
Official ASP.NET Core integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time.
98
QC.Store.Model
Package Description
86
QC.Internal.Model
Package Description
84
QC.Internal.Model
Package Description
47
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging. When using NuGet 3.x this package requires at least version 3.4.
29
QC.Internal.Model
Package Description
28
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
23
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options. When using NuGet 3.x this package requires at least version 3.4.
22
CacheManager.Microsoft.Extensions.Configuration
CacheManager extension package to use Microsoft.Extensions.Configuration to configure the CacheManager instance. CacheManager is an open source caching abstraction layer for .NET written in C#. This is the ASP.NET Core configuration integration package.
16
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
15
QC.Store.Model
Package Description
15
QC.Internal.Model
Package Description
15
QC.Internal.Model
Package Description
13
QC.Internal.Model
Package Description
12
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
9
QC.Store.Model
Package Description
9
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
9
Microsoft.Extensions.OptionsModel
Provides a strongly typed way of specifying and accessing settings using dependency injection.
8
QC.Internal.Model
Package Description
7

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
11.0.0-preview.1.26104.118 0 02/10/2026
10.0.3 0 02/10/2026
10.0.2 1 02/09/2026
10.0.1 2 12/21/2025
10.0.0 2 11/21/2025
10.0.0-rc.2.25502.107 1 11/16/2025
10.0.0-rc.1.25451.107 2 09/23/2025
10.0.0-preview.7.25380.108 3 08/29/2025
10.0.0-preview.6.25358.103 3 09/26/2025
10.0.0-preview.5.25277.114 3 06/17/2025
10.0.0-preview.4.25258.110 3 05/24/2025
10.0.0-preview.3.25171.5 4 04/28/2025
10.0.0-preview.2.25163.2 3 06/18/2025
10.0.0-preview.1.25080.5 5 05/20/2025
9.0.13 0 02/10/2026
9.0.12 1 02/24/2026
9.0.11 2 11/16/2025
9.0.10 2 11/16/2025
9.0.9 2 11/16/2025
9.0.8 2 11/16/2025
9.0.7 2 11/16/2025
9.0.6 3 06/17/2025
9.0.5 3 06/18/2025
9.0.4 3 06/18/2025
9.0.3 3 05/23/2025
9.0.2 3 05/23/2025
9.0.1 3 05/23/2025
9.0.0 3 05/23/2025
9.0.0-rc.2.24473.5 5 05/23/2025
9.0.0-rc.1.24431.7 6 05/23/2025
9.0.0-preview.7.24405.7 3 06/23/2025
9.0.0-preview.6.24327.7 4 06/25/2025
9.0.0-preview.5.24306.7 5 06/17/2025
9.0.0-preview.4.24266.19 4 06/17/2025
9.0.0-preview.3.24172.9 5 06/25/2025
9.0.0-preview.2.24128.5 4 06/25/2025
9.0.0-preview.1.24080.9 3 11/14/2025
8.0.2 3 05/23/2025
8.0.1 3 05/23/2025
8.0.0 3 05/23/2025
8.0.0-rc.2.23479.6 5 06/17/2025
8.0.0-rc.1.23419.4 6 05/23/2025
8.0.0-preview.7.23375.6 3 05/22/2025
8.0.0-preview.6.23329.7 4 04/28/2025
8.0.0-preview.5.23280.8 2 04/28/2025
8.0.0-preview.4.23259.5 5 04/28/2025
8.0.0-preview.3.23174.8 4 04/28/2025
8.0.0-preview.2.23128.3 3 04/28/2025
8.0.0-preview.1.23110.8 2 11/15/2025
7.0.4 3 04/28/2025
7.0.3 4 04/28/2025
7.0.2 4 04/28/2025
7.0.1 4 04/28/2025
7.0.0 4 04/28/2025
7.0.0-rc.2.22472.3 6 04/28/2025
7.0.0-rc.1.22426.10 5 04/28/2025
7.0.0-preview.7.22375.6 3 04/28/2025
7.0.0-preview.6.22324.4 3 04/28/2025
7.0.0-preview.5.22301.12 4 04/28/2025
7.0.0-preview.4.22229.4 5 04/28/2025
7.0.0-preview.3.22175.4 4 04/28/2025
7.0.0-preview.2.22152.2 4 04/28/2025
7.0.0-preview.1.22076.8 4 04/28/2025
6.0.1 8 12/31/2024
6.0.0 72 12/10/2023
6.0.0-rc.2.21480.5 5 04/28/2025
6.0.0-rc.1.21451.13 6 04/28/2025
6.0.0-preview.7.21377.19 5 04/28/2025
6.0.0-preview.6.21352.12 4 04/28/2025
6.0.0-preview.5.21301.5 3 04/28/2025
6.0.0-preview.4.21253.7 5 04/28/2025
6.0.0-preview.3.21201.4 3 04/28/2025
6.0.0-preview.2.21154.6 5 04/28/2025
6.0.0-preview.1.21102.12 3 04/28/2025
5.0.0 6 12/14/2023
5.0.0-rc.2.20475.5 6 04/28/2025
5.0.0-rc.1.20451.14 5 04/28/2025
5.0.0-preview.8.20407.11 5 04/28/2025
5.0.0-preview.7.20364.11 4 04/28/2025
5.0.0-preview.6.20305.6 2 04/28/2025
5.0.0-preview.5.20278.1 4 04/28/2025
5.0.0-preview.4.20251.6 5 04/28/2025
5.0.0-preview.3.20215.2 3 04/28/2025
5.0.0-preview.2.20160.3 4 04/28/2025
5.0.0-preview.1.20120.4 3 04/28/2025
3.1.32 5 04/28/2025
3.1.31 5 04/28/2025
3.1.30 5 04/28/2025
3.1.29 5 04/28/2025
3.1.28 5 04/28/2025
3.1.27 5 04/28/2025
3.1.26 6 04/28/2025
3.1.25 5 04/28/2025
3.1.24 5 04/28/2025
3.1.23 5 04/28/2025
3.1.22 5 04/28/2025
3.1.21 5 04/28/2025
3.1.20 4 06/17/2025
3.1.19 5 04/28/2025
3.1.18 5 04/28/2025
3.1.17 5 04/28/2025
3.1.16 5 04/28/2025
3.1.15 5 04/28/2025
3.1.14 5 04/28/2025
3.1.13 6 04/28/2025
3.1.12 6 04/28/2025
3.1.11 5 04/28/2025
3.1.10 4 04/28/2025
3.1.9 4 04/28/2025
3.1.8 4 04/28/2025
3.1.7 4 04/28/2025
3.1.6 4 04/28/2025
3.1.5 4 04/28/2025
3.1.4 4 04/28/2025
3.1.3 3 04/28/2025
3.1.2 4 04/28/2025
3.1.1 4 04/28/2025
3.1.0 5 01/07/2025
3.1.0-preview3.19553.2 5 04/28/2025
3.1.0-preview2.19525.4 4 04/28/2025
3.1.0-preview1.19506.1 5 04/28/2025
3.0.3 3 04/28/2025
3.0.2 4 04/28/2025
3.0.1 4 04/28/2025
3.0.0 4 04/28/2025
3.0.0-rc1.19456.10 5 04/28/2025
3.0.0-preview9.19423.4 5 04/28/2025
3.0.0-preview8.19405.4 4 04/28/2025
3.0.0-preview7.19362.4 4 04/28/2025
3.0.0-preview6.19304.6 6 04/28/2025
3.0.0-preview5.19227.9 4 04/28/2025
3.0.0-preview4.19216.2 4 04/28/2025
3.0.0-preview3.19153.1 4 04/28/2025
3.0.0-preview.19074.2 4 04/28/2025
3.0.0-preview.18572.1 4 04/28/2025
2.2.4 4 04/28/2025
2.2.0 4 04/28/2025
2.2.0-preview3-35497 4 04/28/2025
2.2.0-preview2-35157 4 04/28/2025
2.2.0-preview1-35029 4 04/28/2025
2.1.10 5 04/28/2025
2.1.1 4 04/28/2025
2.1.0 3 05/23/2025
2.1.0-rc1-final 3 04/28/2025
2.1.0-preview2-final 6 04/28/2025
2.1.0-preview1-final 6 04/28/2025
2.0.2 3 04/28/2025
2.0.1 4 04/28/2025
2.0.0 13 12/14/2023
2.0.0-preview2-final 5 04/28/2025
2.0.0-preview1-final 5 04/28/2025
1.1.2 4 04/28/2025
1.1.1 3 04/28/2025
1.1.0 4 04/28/2025
1.1.0-preview1-final 4 04/28/2025
1.0.2 4 04/28/2025
1.0.1 4 04/28/2025
1.0.0 4 04/28/2025
1.0.0-rc2-final 5 04/28/2025
1.0.0-rc1-final 5 04/28/2025