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
Lazy.Captcha.Core
仿EasyCaptcha和SimpleCaptcha,基于.Net Standard 2.0的图形验证码模块。版本2.0.0起绘图由ImageSharp调整为SkiaSharp。文档地址: https://gitee.com/pojianbing/lazy-captcha
51
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
227
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
63
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
5,450
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
9,147
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
57
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
71
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
246
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
56
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
220
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
307
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
5,485
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
9,191
OpenTelemetry.Exporter.OpenTelemetryProtocol
OpenTelemetry protocol exporter for OpenTelemetry .NET
60
Quantum.Framework.AspNetCore
Package Description
49
Quantum.Framework.AspNetCore
增加redis hash方法及验证token有效性
57
Quantum.Framework.AspNetCore
增加用户类型及API结果类型
55
Quantum.Framework.AspNetCore
增加获取用户授权KEY及获取用户角色方法
73
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
229
SkyAPM.Utilities.Configuration
SkyAPM configuration extensions.
138

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