Microsoft.Extensions.Configuration.Binder 10.0.5

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.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
85
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
83
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
82
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
81
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options. This package was built from the source at: https://github.com/aspnet/Options/tree/a310a923647d28331705895c1b4d7186895f2f79
80
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
79
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
78
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
77
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
76
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
75

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

Version Downloads Last updated
11.0.0-preview.5.26302.115 8 06/10/2026
11.0.0-preview.4.26230.115 13 05/14/2026
11.0.0-preview.3.26207.106 18 04/16/2026
11.0.0-preview.2.26159.112 26 03/11/2026
11.0.0-preview.1.26104.118 29 02/15/2026
10.0.9 8 06/10/2026
10.0.8 14 05/14/2026
10.0.7 20 04/23/2026
10.0.6 19 04/16/2026
10.0.5 24 03/13/2026
10.0.4 27 03/11/2026
10.0.3 29 02/17/2026
10.0.2 37 01/17/2026
10.0.1 41 12/11/2025
10.0.0 45 11/16/2025
10.0.0-rc.2.25502.107 57 10/18/2025
10.0.0-rc.1.25451.107 61 09/20/2025
10.0.0-preview.7.25380.108 55 09/05/2025
10.0.0-preview.6.25358.103 61 09/05/2025
10.0.0-preview.5.25277.114 58 09/05/2025
10.0.0-preview.4.25258.110 50 09/05/2025
10.0.0-preview.3.25171.5 56 09/05/2025
10.0.0-preview.2.25163.2 54 09/05/2025
10.0.0-preview.1.25080.5 59 09/05/2025
9.0.17 12 06/10/2026
9.0.16 18 05/14/2026
9.0.15 23 04/16/2026
9.0.14 28 03/11/2026
9.0.13 36 02/16/2026
9.0.12 43 01/18/2026
9.0.11 48 11/16/2025
9.0.10 52 10/18/2025
9.0.9 50 09/21/2025
9.0.8 58 09/02/2025
9.0.7 50 09/05/2025
9.0.6 53 09/05/2025
9.0.5 53 09/05/2025
9.0.4 52 09/05/2025
9.0.3 60 09/05/2025
9.0.2 56 09/05/2025
9.0.1 52 09/05/2025
9.0.0 53 09/05/2025
9.0.0-rc.2.24473.5 55 09/05/2025
9.0.0-rc.1.24431.7 58 09/05/2025
9.0.0-preview.7.24405.7 58 09/05/2025
9.0.0-preview.6.24327.7 56 09/05/2025
9.0.0-preview.5.24306.7 56 09/05/2025
9.0.0-preview.4.24266.19 60 09/05/2025
9.0.0-preview.3.24172.9 55 09/05/2025
9.0.0-preview.2.24128.5 54 09/05/2025
9.0.0-preview.1.24080.9 60 09/05/2025
8.0.2 52 09/05/2025
8.0.1 50 09/05/2025
8.0.0 52 09/05/2025
8.0.0-rc.2.23479.6 58 09/05/2025
8.0.0-rc.1.23419.4 54 09/05/2025
8.0.0-preview.7.23375.6 57 09/05/2025
8.0.0-preview.6.23329.7 65 09/05/2025
8.0.0-preview.5.23280.8 65 09/05/2025
8.0.0-preview.4.23259.5 70 09/05/2025
8.0.0-preview.3.23174.8 64 09/05/2025
8.0.0-preview.2.23128.3 70 09/05/2025
8.0.0-preview.1.23110.8 71 09/05/2025
7.0.4 66 09/05/2025
7.0.3 67 09/05/2025
7.0.2 65 09/05/2025
7.0.1 67 09/05/2025
7.0.0 62 09/05/2025
7.0.0-rc.2.22472.3 72 09/05/2025
7.0.0-rc.1.22426.10 68 09/05/2025
7.0.0-preview.7.22375.6 69 09/05/2025
7.0.0-preview.6.22324.4 72 09/05/2025
7.0.0-preview.5.22301.12 71 09/05/2025
7.0.0-preview.4.22229.4 69 09/05/2025
7.0.0-preview.3.22175.4 69 09/05/2025
7.0.0-preview.2.22152.2 68 09/05/2025
7.0.0-preview.1.22076.8 63 09/05/2025
6.0.1 65 09/05/2025
6.0.0 61 09/05/2025
6.0.0-rc.2.21480.5 68 09/05/2025
6.0.0-rc.1.21451.13 68 09/05/2025
6.0.0-preview.7.21377.19 75 09/05/2025
6.0.0-preview.6.21352.12 63 09/05/2025
6.0.0-preview.5.21301.5 68 09/05/2025
6.0.0-preview.4.21253.7 64 09/05/2025
6.0.0-preview.3.21201.4 63 09/05/2025
6.0.0-preview.2.21154.6 66 09/05/2025
6.0.0-preview.1.21102.12 67 09/05/2025
5.0.0 62 09/05/2025
5.0.0-rc.2.20475.5 70 09/05/2025
5.0.0-rc.1.20451.14 68 09/05/2025
5.0.0-preview.8.20407.11 66 09/05/2025
5.0.0-preview.7.20364.11 68 09/05/2025
5.0.0-preview.6.20305.6 69 09/05/2025
5.0.0-preview.5.20278.1 64 09/05/2025
5.0.0-preview.4.20251.6 64 09/05/2025
5.0.0-preview.3.20215.2 69 09/05/2025
5.0.0-preview.2.20160.3 68 09/05/2025
5.0.0-preview.1.20120.4 68 09/05/2025
3.1.32 60 09/05/2025
3.1.31 59 09/05/2025
3.1.30 57 09/05/2025
3.1.29 62 09/05/2025
3.1.28 63 09/05/2025
3.1.27 59 09/05/2025
3.1.26 63 09/05/2025
3.1.25 60 09/05/2025
3.1.24 62 09/05/2025
3.1.23 61 09/05/2025
3.1.22 63 09/05/2025
3.1.21 63 09/05/2025
3.1.20 60 09/05/2025
3.1.19 63 09/05/2025
3.1.18 58 09/05/2025
3.1.17 62 09/05/2025
3.1.16 64 09/05/2025
3.1.15 60 09/05/2025
3.1.14 62 09/05/2025
3.1.13 64 09/05/2025
3.1.12 61 09/05/2025
3.1.11 62 09/05/2025
3.1.10 61 09/05/2025
3.1.9 63 09/05/2025
3.1.8 63 09/05/2025
3.1.7 63 09/05/2025
3.1.6 62 09/05/2025
3.1.5 65 09/05/2025
3.1.4 61 09/05/2025
3.1.3 64 09/05/2025
3.1.2 62 09/05/2025
3.1.1 60 09/05/2025
3.1.0 54 09/05/2025
3.1.0-preview3.19553.2 59 09/05/2025
3.1.0-preview2.19525.4 57 09/05/2025
3.1.0-preview1.19506.1 59 09/05/2025
3.0.3 51 09/05/2025
3.0.2 54 09/05/2025
3.0.1 55 09/05/2025
3.0.0 51 09/05/2025
3.0.0-rc1.19456.10 53 09/05/2025
3.0.0-preview9.19423.4 61 09/05/2025
3.0.0-preview8.19405.4 55 09/05/2025
3.0.0-preview7.19362.4 52 09/05/2025
3.0.0-preview6.19304.6 54 09/05/2025
3.0.0-preview5.19227.9 55 09/05/2025
3.0.0-preview4.19216.2 55 09/05/2025
3.0.0-preview3.19153.1 57 09/05/2025
3.0.0-preview.19074.2 56 09/05/2025
3.0.0-preview.18572.1 51 09/05/2025
2.2.4 51 09/05/2025
2.2.0 52 09/05/2025
2.2.0-preview3-35497 54 09/05/2025
2.2.0-preview2-35157 56 09/05/2025
2.2.0-preview1-35029 56 09/05/2025
2.1.10 53 09/05/2025
2.1.1 50 09/05/2025
2.1.0 50 09/05/2025
2.1.0-rc1-final 51 09/05/2025
2.1.0-preview2-final 54 09/05/2025
2.1.0-preview1-final 56 09/05/2025
2.0.2 50 09/05/2025
2.0.1 49 09/05/2025
2.0.0 50 09/05/2025
2.0.0-preview2-final 56 09/05/2025
2.0.0-preview1-final 51 09/05/2025
1.1.2 52 09/05/2025
1.1.1 52 09/05/2025
1.1.0 52 09/05/2025
1.1.0-preview1-final 55 09/05/2025
1.0.2 49 09/05/2025
1.0.1 48 09/05/2025
1.0.0 51 09/05/2025
1.0.0-rc2-final 58 09/05/2025
1.0.0-rc1-final 57 09/05/2025