Microsoft.Extensions.Configuration.Binder 10.0.0-preview.2.25163.2

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.

The types contained in this assembly use Reflection at runtime which is not friendly with linking or AOT. To better support linking and AOT as well as provide more efficient strongly-typed binding methods - this package also provides a source generator. This generator is enabled by default when a project sets PublishAot but can also be enabled using <EnableConfigurationBindingGenerator>true</EnableConfigurationBindingGenerator>.

Key Features

  • Configuring existing type instances from a configuration section (Bind)
  • Constructing new configured type instances from a configuration section (Get & GetValue)
  • Generating source to bind objects from a configuration section without a runtime reflection dependency.

How to Use

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>

You can add the following property to enable the source generator. This requires a .NET 8.0 SDK or later.

<PropertyGroup>
  <EnableConfigurationBindingGenerator>true</EnableConfigurationBindingGenerator>
</PropertyGroup>

Main Types

The main types provided by this library are:

  • Microsoft.Extensions.Configuration.ConfigurationBinder
  • Microsoft.Extensions.Configuration.BinderOptions

Additional Documentation

Feedback & Contributing

Microsoft.Extensions.Configuration.Binder 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 Microsoft.Extensions.Configuration.Binder.

Packages Downloads
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
217
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
42
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
53
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
5,435
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
9,027
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
51
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
62
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
233
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
46
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
209
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
296
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
5,475
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
9,091
OpenTelemetry.Exporter.OpenTelemetryProtocol
OpenTelemetry protocol exporter for OpenTelemetry .NET
44
Quantum.Framework.AspNetCore
Package Description
44
Quantum.Framework.AspNetCore
增加redis hash方法及验证token有效性
52
Quantum.Framework.AspNetCore
增加用户类型及API结果类型
47
Quantum.Framework.AspNetCore
增加获取用户授权KEY及获取用户角色方法
65
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
215
SkyAPM.Utilities.Configuration
SkyAPM configuration extensions.
118

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

.NET Framework 4.6.2

.NET 8.0

.NET 9.0

.NET 10.0

.NET Standard 2.0

Version Downloads Last updated
10.0.0 6 11/13/2025
10.0.0-rc.2.25502.107 6 10/14/2025
10.0.0-rc.1.25451.107 11 09/10/2025
10.0.0-preview.7.25380.108 7 08/13/2025
10.0.0-preview.6.25358.103 9 07/16/2025
10.0.0-preview.5.25277.114 13 06/08/2025
10.0.0-preview.4.25258.110 16 05/15/2025
10.0.0-preview.3.25171.5 19 04/22/2025
10.0.0-preview.2.25163.2 24 03/26/2025
10.0.0-preview.1.25080.5 20 03/09/2025
9.0.11 6 11/13/2025
9.0.10 7 10/14/2025
9.0.9 10 09/11/2025
9.0.8 14 08/07/2025
9.0.7 10 07/11/2025
9.0.6 13 06/13/2025
9.0.5 16 05/16/2025
9.0.4 17 04/22/2025
9.0.3 19 03/16/2025
9.0.2 23 02/28/2025
9.0.1 23 01/31/2025
9.0.0 27 11/23/2024
9.0.0-rc.2.24473.5 23 11/04/2024
9.0.0-rc.1.24431.7 21 11/27/2024
9.0.0-preview.7.24405.7 21 11/25/2024
9.0.0-preview.6.24327.7 23 11/14/2024
9.0.0-preview.5.24306.7 27 11/12/2024
9.0.0-preview.4.24266.19 20 11/27/2024
9.0.0-preview.3.24172.9 36 05/06/2024
9.0.0-preview.2.24128.5 30 05/06/2024
9.0.0-preview.1.24080.9 21 11/28/2024
8.0.2 117 11/29/2024
8.0.1 50 01/25/2024
8.0.0 241 12/18/2023
8.0.0-rc.2.23479.6 23 11/14/2024
8.0.0-rc.1.23419.4 22 11/14/2024
8.0.0-preview.7.23375.6 27 11/14/2024
8.0.0-preview.6.23329.7 45 08/08/2023
8.0.0-preview.5.23280.8 21 11/12/2024
8.0.0-preview.4.23259.5 28 11/12/2024
8.0.0-preview.3.23174.8 18 11/14/2024
8.0.0-preview.2.23128.3 25 11/12/2024
8.0.0-preview.1.23110.8 26 05/06/2024
7.0.4 30 12/09/2023
7.0.3 37 06/16/2023
7.0.2 27 11/13/2024
7.0.1 77 11/27/2024
7.0.0 56 06/13/2023
7.0.0-rc.2.22472.3 27 11/13/2024
7.0.0-rc.1.22426.10 21 12/06/2024
7.0.0-preview.7.22375.6 26 11/27/2024
7.0.0-preview.6.22324.4 29 11/12/2024
7.0.0-preview.5.22301.12 24 11/27/2024
7.0.0-preview.4.22229.4 26 11/12/2024
7.0.0-preview.2.22152.2 19 11/23/2024
7.0.0-preview.1.22076.8 20 11/14/2024
6.0.2-mauipre.1.22102.15 13 07/12/2025
6.0.1 26 11/14/2024
6.0.0-rc.2.21480.5 22 12/02/2024
6.0.0-rc.1.21451.13 25 11/03/2022
6.0.0-preview.6.21352.12 22 11/14/2024
6.0.0-preview.5.21301.5 25 11/12/2024
6.0.0-preview.4.21253.7 19 11/25/2024
6.0.0-preview.2.21154.6 18 11/14/2024
6.0.0-preview.1.21102.12 29 11/27/2024
5.0.0-rc.1.20451.14 24 11/27/2024
5.0.0-preview.8.20407.11 26 12/08/2024
5.0.0-preview.7.20364.11 31 05/30/2024
5.0.0-preview.6.20305.6 25 11/12/2024
5.0.0-preview.5.20278.1 28 11/28/2024
5.0.0-preview.4.20251.6 27 11/26/2024
5.0.0-preview.3.20215.2 19 11/14/2024
5.0.0-preview.2.20160.3 22 11/13/2024
5.0.0-preview.1.20120.4 21 12/11/2024
3.1.32 9,058 05/12/2023
3.1.31 28 11/27/2024
3.1.30 5,435 11/03/2022
3.1.28 31 11/27/2024
3.1.27 23 11/27/2024
3.1.26 29 11/12/2024
3.1.25 27 11/23/2024
3.1.23 48 06/08/2023
3.1.22 25 11/14/2024
3.1.18 29 11/12/2024
3.1.15 23 11/13/2024
3.1.13 35 03/11/2024
3.1.10 40 05/11/2023
3.1.0-preview3.19553.2 28 11/04/2022
3.1.0-preview2.19525.4 22 11/14/2024
3.1.0-preview1.19506.1 21 11/12/2024
3.0.3 30 11/05/2024
3.0.2 27 11/23/2024
3.0.1 29 11/14/2024
3.0.0-rc1.19456.10 22 11/12/2024
3.0.0-preview6.19304.6 21 11/28/2024
3.0.0-preview5.19227.9 20 12/02/2024
3.0.0-preview3.19153.1 23 11/14/2024
3.0.0-preview.19074.2 22 11/26/2024
3.0.0-preview.18572.1 24 12/11/2024
2.2.0-preview1-35029 24 12/10/2024
2.1.0-rc1-final 29 11/12/2024
2.1.0-preview2-final 26 11/24/2024
2.1.0-preview1-final 22 11/12/2024
2.0.2 28 11/14/2024
2.0.1 23 11/14/2024
2.0.0-preview2-final 22 11/13/2024
1.1.1 33 11/27/2024
1.1.0 35 12/11/2024
1.0.1 30 11/11/2024
1.0.0 32 11/14/2024
1.0.0-rc2-final 31 11/20/2024