Microsoft.Extensions.Configuration.Binder 9.0.0-preview.3.24172.9

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.AspNetCore.App
Provides a default set of APIs for building an ASP.NET Core application. This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
42
Microsoft.AspNetCore.HttpsPolicy
ASP.NET Core basic middleware for supporting HTTPS Redirection and HTTP Strict-Transport-Security. This package was built from the source code at https://github.com/aspnet/BasicMiddleware/tree/2d3ad1cb0f9872da40c6d143ce4554563971ae04
47
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
249
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
9,081
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
9,116
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging.
38
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
37
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
44
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
47
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
48
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
51
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
23,245
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.
44
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.
51
Microsoft.Identity.Client.Extensions.Msal
This package contains extensions to Microsoft Authentication Library for .NET (MSAL.NET)
45
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
41
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
42
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
43
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
45
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
47

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

.NET Framework 4.6.2

.NET 8.0

.NET 9.0

.NET Standard 2.0

Version Downloads Last updated
9.0.0-preview.3.24172.9 1 04/17/2024
9.0.0-preview.2.24128.5 2 03/14/2024
9.0.0-preview.1.24080.9 1 02/20/2024
8.0.1 1 01/19/2024
8.0.0 8 11/16/2023
8.0.0-rc.2.23479.6 6 10/19/2023
8.0.0-rc.1.23419.4 6 09/21/2023
8.0.0-preview.7.23375.6 7 09/06/2023
8.0.0-preview.6.23329.7 7 09/11/2023
8.0.0-preview.5.23280.8 9 06/17/2023
8.0.0-preview.4.23259.5 5 05/18/2023
8.0.0-preview.3.23174.8 7 06/17/2023
8.0.0-preview.2.23128.3 6 03/29/2023
8.0.0-preview.1.23110.8 11 03/29/2023
7.0.4 6 03/29/2023
7.0.3 4 03/29/2023
7.0.2 4 03/29/2023
7.0.1 5 01/08/2023
7.0.0 4 12/17/2022
7.0.0-rc.2.22472.3 10 10/20/2022
7.0.0-rc.1.22426.10 10 10/20/2022
7.0.0-preview.7.22375.6 8 10/20/2022
7.0.0-preview.6.22324.4 9 09/23/2022
7.0.0-preview.5.22301.12 9 09/22/2022
7.0.0-preview.4.22229.4 8 10/20/2022
7.0.0-preview.3.22175.4 9 10/20/2022
7.0.0-preview.2.22152.2 7 09/22/2022
7.0.0-preview.1.22076.8 12 09/21/2022
6.0.2-mauipre.1.22102.15 9 10/20/2022
6.0.2-mauipre.1.22054.8 10 09/23/2022
6.0.0 9 10/20/2022
6.0.0-rc.2.21480.5 9 10/20/2022
6.0.0-rc.1.21451.13 9 09/24/2022
6.0.0-preview.7.21377.19 8 09/24/2022
6.0.0-preview.6.21352.12 9 09/24/2022
6.0.0-preview.5.21301.5 13 09/22/2022
6.0.0-preview.4.21253.7 8 09/25/2022
6.0.0-preview.3.21201.4 8 10/20/2022
6.0.0-preview.2.21154.6 10 09/26/2022
6.0.0-preview.1.21102.12 11 09/24/2022
5.0.0 11 07/12/2022
5.0.0-rc.2.20475.5 10 10/20/2022
5.0.0-rc.1.20451.14 11 09/23/2022
5.0.0-preview.8.20407.11 12 07/01/2022
5.0.0-preview.7.20364.11 12 07/28/2022
5.0.0-preview.6.20305.6 8 10/20/2022
5.0.0-preview.5.20278.1 10 09/26/2022
5.0.0-preview.4.20251.6 8 10/20/2022
5.0.0-preview.3.20215.2 11 09/23/2022
5.0.0-preview.2.20160.3 9 09/22/2022
5.0.0-preview.1.20120.4 5 09/25/2022
3.1.32 3 01/08/2023
3.1.31 4 01/08/2023
3.1.30 7 10/20/2022
3.1.29 14 09/22/2022
3.1.28 10 09/23/2022
3.1.27 10 09/21/2022
3.1.26 8 10/20/2022
3.1.25 8 10/20/2022
3.1.24 9 09/27/2022
3.1.23 7 06/27/2022
3.1.22 8 07/23/2022
3.1.21 7 09/24/2022
3.1.20 8 09/22/2022
3.1.19 7 09/23/2022
3.1.18 12 10/20/2022
3.1.17 8 09/21/2022
3.1.16 11 09/25/2022
3.1.15 12 06/27/2022
3.1.14 8 09/23/2022
3.1.13 9 06/29/2022
3.1.12 8 10/20/2022
3.1.11 12 06/27/2022
3.1.10 12 09/22/2022
3.1.9 9 09/24/2022
3.1.8 16 07/02/2022
3.1.7 8 09/26/2022
3.1.6 10 09/25/2022
3.1.5 9,104 06/27/2022
3.1.4 10 09/24/2022
3.1.3 9,081 06/27/2022
3.1.2 8 09/23/2022
3.1.1 6 09/21/2022
3.1.0 246 08/02/2022
3.1.0-preview3.19553.2 9 09/24/2022
3.1.0-preview2.19525.4 10 09/26/2022
3.1.0-preview1.19506.1 12 10/20/2022
3.0.3 7 10/20/2022
3.0.2 10 09/21/2022
3.0.1 10 09/21/2022
3.0.0 10 07/30/2022
3.0.0-rc1.19456.10 9 09/23/2022
3.0.0-preview9.19423.4 9 09/23/2022
3.0.0-preview8.19405.4 5 09/25/2022
3.0.0-preview7.19362.4 10 09/23/2022
3.0.0-preview6.19304.6 6 10/20/2022
3.0.0-preview5.19227.9 8 10/20/2022
3.0.0-preview4.19216.2 10 09/26/2022
3.0.0-preview3.19153.1 9 09/22/2022
3.0.0-preview.19074.2 7 09/25/2022
3.0.0-preview.18572.1 9 10/20/2022
2.2.4 13 08/01/2022
2.2.0 11 07/21/2022
2.2.0-preview3-35497 8 07/09/2022
2.2.0-preview2-35157 10 09/24/2022
2.2.0-preview1-35029 11 09/22/2022
2.1.10 6 10/20/2022
2.1.1 11 10/20/2022
2.1.0 9 06/27/2022
2.1.0-rc1-final 11 10/20/2022
2.1.0-preview2-final 14 06/27/2022
2.1.0-preview1-final 4 10/20/2022
2.0.2 9 09/23/2022
2.0.1 10 09/22/2022
2.0.0 23,193 06/27/2022
2.0.0-preview2-final 15 07/29/2022
2.0.0-preview1-final 13 09/22/2022
1.1.2 13 10/20/2022
1.1.1 7 10/20/2022
1.1.0 6 10/20/2022
1.1.0-preview1-final 11 10/20/2022
1.0.2 7 09/21/2022
1.0.1 9 09/25/2022
1.0.0 8 07/06/2022
1.0.0-rc2-final 10 10/20/2022
1.0.0-rc1-final 11 10/20/2022