Microsoft.Extensions.Configuration.Binder 8.0.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Microsoft.Extensions.Configuration.Binder --version 8.0.1
NuGet\Install-Package Microsoft.Extensions.Configuration.Binder -Version 8.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.Extensions.Configuration.Binder --version 8.0.1
#r "nuget: Microsoft.Extensions.Configuration.Binder, 8.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Microsoft.Extensions.Configuration.Binder as a Cake Addin
#addin nuget:?package=Microsoft.Extensions.Configuration.Binder&version=8.0.1

// Install Microsoft.Extensions.Configuration.Binder as a Cake Tool
#tool nuget:?package=Microsoft.Extensions.Configuration.Binder&version=8.0.1

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.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3.6K)

Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Configuration.Binder:

Package Downloads
Microsoft.Extensions.Options.ConfigurationExtensions The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Provides additional configuration specific functionality related to Options.

Microsoft.Extensions.Logging.Configuration The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Configuration support for Microsoft.Extensions.Logging.

Microsoft.Extensions.Hosting The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Hosting and startup infrastructures for applications.

Serilog.Settings.Configuration The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.

Microsoft.AspNetCore.Server.Kestrel.Core The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Core components of ASP.NET Core Kestrel cross-platform web server.

GitHub repositories (356)

Showing the top 5 popular GitHub repositories that depend on Microsoft.Extensions.Configuration.Binder:

Repository Stars
jellyfin/jellyfin
The Free Software Media System
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
abpframework/abp
Open Source Web Application Framework for ASP.NET Core. Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET and the ASP.NET Core platforms. Provides the fundamental infrastructure, production-ready startup templates, application modules, UI themes, tooling, guides and documentation.
microsoft/garnet
Garnet is a remote cache-store from Microsoft Research that offers strong performance (throughput and latency), scalability, storage, recovery, cluster sharding, key migration, and replication features. Garnet can work with existing Redis clients.
JeffreySu/WeiXinMPSDK
微信全平台 SDK Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 6.0、.NET 8.0。已支持微信公众号、小程序、小游戏、微信支付、企业微信/企业号、开放平台、JSSDK、微信周边等全平台。 WeChat SDK for C#.
Version Downloads Last updated
9.0.0-preview.3.24172.9 3,279 4/11/2024
9.0.0-preview.2.24128.5 11,815 3/12/2024
9.0.0-preview.1.24080.9 47,365 2/13/2024
8.0.1 6,114,490 1/9/2024
8.0.0 28,152,465 11/14/2023
8.0.0-rc.2.23479.6 586,984 10/10/2023
8.0.0-rc.1.23419.4 281,212 9/12/2023
8.0.0-preview.7.23375.6 210,327 8/8/2023
8.0.0-preview.6.23329.7 110,459 7/11/2023
8.0.0-preview.5.23280.8 80,758 6/13/2023
8.0.0-preview.4.23259.5 163,865 5/16/2023
8.0.0-preview.3.23174.8 131,438 4/11/2023
8.0.0-preview.2.23128.3 71,654 3/14/2023
8.0.0-preview.1.23110.8 112,774 2/21/2023
7.0.4 29,095,667 3/14/2023
7.0.3 35,751,027 2/14/2023
7.0.2 5,124,412 1/10/2023
7.0.1 3,031,444 12/13/2022
7.0.0 77,993,152 11/7/2022
7.0.0-rc.2.22472.3 226,214 10/11/2022
7.0.0-rc.1.22426.10 153,923 9/14/2022
7.0.0-preview.7.22375.6 183,074 8/9/2022
7.0.0-preview.6.22324.4 82,678 7/12/2022
7.0.0-preview.5.22301.12 56,658 6/14/2022
7.0.0-preview.4.22229.4 70,225 5/10/2022
7.0.0-preview.3.22175.4 64,209 4/13/2022
7.0.0-preview.2.22152.2 35,435 3/14/2022
7.0.0-preview.1.22076.8 50,857 2/17/2022
6.0.2-mauipre.1.22102.15 66,422 2/15/2022
6.0.2-mauipre.1.22054.8 194,505 1/19/2022
6.0.0 259,238,307 11/8/2021
6.0.0-rc.2.21480.5 550,717 10/12/2021
6.0.0-rc.1.21451.13 328,271 9/14/2021
6.0.0-preview.7.21377.19 238,039 8/10/2021
6.0.0-preview.6.21352.12 107,980 7/14/2021
6.0.0-preview.5.21301.5 64,203 6/15/2021
6.0.0-preview.4.21253.7 57,360 5/24/2021
6.0.0-preview.3.21201.4 182,233 4/8/2021
6.0.0-preview.2.21154.6 96,536 3/11/2021
6.0.0-preview.1.21102.12 107,760 2/12/2021
5.0.0 179,724,212 11/9/2020
5.0.0-rc.2.20475.5 246,899 10/13/2020
5.0.0-rc.1.20451.14 329,593 9/14/2020
5.0.0-preview.8.20407.11 275,710 8/25/2020
5.0.0-preview.7.20364.11 68,494 7/21/2020
5.0.0-preview.6.20305.6 52,481 6/25/2020
5.0.0-preview.5.20278.1 26,417 6/10/2020
5.0.0-preview.4.20251.6 53,269 5/18/2020
5.0.0-preview.3.20215.2 223,196 4/23/2020
5.0.0-preview.2.20160.3 220,706 4/2/2020
5.0.0-preview.1.20120.4 86,015 3/16/2020
3.1.32 6,296,641 12/13/2022
3.1.31 1,590,858 11/8/2022
3.1.30 1,832,271 10/11/2022
3.1.29 1,569,861 9/13/2022
3.1.28 2,099,278 8/9/2022
3.1.27 1,555,174 7/12/2022
3.1.26 1,500,728 6/14/2022
3.1.25 2,461,401 5/10/2022
3.1.24 1,723,055 4/11/2022
3.1.23 2,785,080 3/8/2022
3.1.22 12,774,769 12/14/2021
3.1.21 6,858,769 11/7/2021
3.1.20 3,644,572 10/11/2021
3.1.19 4,431,953 9/14/2021
3.1.18 33,147,171 8/10/2021
3.1.17 5,752,022 7/13/2021
3.1.16 9,099,383 6/8/2021
3.1.15 7,508,893 5/11/2021
3.1.14 14,513,019 4/6/2021
3.1.13 12,380,764 3/9/2021
3.1.12 9,827,759 2/9/2021
3.1.11 11,920,506 1/12/2021
3.1.10 21,665,649 11/9/2020
3.1.9 59,099,215 10/13/2020
3.1.8 58,864,677 9/8/2020
3.1.7 30,104,727 8/11/2020
3.1.6 34,912,045 7/14/2020
3.1.5 36,566,333 6/9/2020
3.1.4 37,772,276 5/12/2020
3.1.3 71,569,240 3/24/2020
3.1.2 67,873,644 2/18/2020
3.1.1 38,498,733 1/14/2020
3.1.0 131,745,363 12/3/2019
3.1.0-preview3.19553.2 212,802 11/13/2019
3.1.0-preview2.19525.4 71,204 11/1/2019
3.1.0-preview1.19506.1 1,097,175 10/15/2019
3.0.3 52,365,051 2/18/2020
3.0.2 1,042,002 1/14/2020
3.0.1 5,738,530 11/18/2019
3.0.0 81,366,597 9/23/2019
3.0.0-rc1.19456.10 88,629 9/16/2019
3.0.0-preview9.19423.4 1,405,583 9/4/2019
3.0.0-preview8.19405.4 529,914 8/13/2019
3.0.0-preview7.19362.4 211,978 7/23/2019
3.0.0-preview6.19304.6 325,361 6/12/2019
3.0.0-preview5.19227.9 771,192 5/6/2019
3.0.0-preview4.19216.2 67,885 4/18/2019
3.0.0-preview3.19153.1 325,138 3/6/2019
3.0.0-preview.19074.2 170,362 1/29/2019
3.0.0-preview.18572.1 144,960 12/3/2018
2.2.4 27,317,040 4/9/2019
2.2.0 209,270,414 12/3/2018
2.2.0-preview3-35497 388,427 10/17/2018
2.2.0-preview2-35157 262,572 9/12/2018
2.2.0-preview1-35029 147,512 8/22/2018
2.1.10 51,296,053 4/9/2019
2.1.1 262,380,896 6/18/2018
2.1.0 298,221,168 5/29/2018
2.1.0-rc1-final 516,796 5/6/2018
2.1.0-preview2-final 593,010 4/10/2018
2.1.0-preview1-final 604,868 2/26/2018
2.0.2 7,354,485 5/7/2018
2.0.1 12,221,868 3/13/2018
2.0.0 322,408,951 8/11/2017
2.0.0-preview2-final 143,007 6/28/2017
2.0.0-preview1-final 53,760 5/10/2017
1.1.2 14,240,133 5/9/2017
1.1.1 4,119,534 3/6/2017
1.1.0 2,747,407 11/16/2016
1.1.0-preview1-final 16,656 10/24/2016
1.0.2 2,495,171 3/6/2017
1.0.1 361,517 12/12/2016
1.0.0 3,245,776 6/27/2016
1.0.0-rc2-final 40,222 5/16/2016
1.0.0-rc1-final 807,758 11/18/2015