Microsoft.Extensions.Configuration.Binder
8.0.2
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.Configuration.Binder --version 8.0.2
NuGet\Install-Package Microsoft.Extensions.Configuration.Binder -Version 8.0.2
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.2" />
paket add Microsoft.Extensions.Configuration.Binder --version 8.0.2
#r "nuget: Microsoft.Extensions.Configuration.Binder, 8.0.2"
// Install Microsoft.Extensions.Configuration.Binder as a Cake Addin #addin nuget:?package=Microsoft.Extensions.Configuration.Binder&version=8.0.2 // Install Microsoft.Extensions.Configuration.Binder as a Cake Tool #tool nuget:?package=Microsoft.Extensions.Configuration.Binder&version=8.0.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
Related Packages
- Microsoft.Extensions.Configuration
- Microsoft.Extensions.Configuration.Abstractions
- Microsoft.Extensions.Configuration.CommandLine
- Microsoft.Extensions.Configuration.EnvironmentVariables
- Microsoft.Extensions.Configuration.FileExtensions
- Microsoft.Extensions.Configuration.Ini
- Microsoft.Extensions.Configuration.Json
- Microsoft.Extensions.Configuration.UserSecrets
- Microsoft.Extensions.Configuration.Xml
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 | Versions 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. |
-
.NETFramework 4.6.2
-
.NETStandard 2.0
-
net6.0
-
net7.0
-
net8.0
NuGet packages (4.1K)
Showing the top 5 NuGet packages that depend on Microsoft.Extensions.Configuration.Binder:
Package | Downloads |
---|---|
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options. |
|
Microsoft.Extensions.Logging.Configuration
Configuration support for Microsoft.Extensions.Logging. |
|
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications. |
|
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog. |
|
Microsoft.AspNetCore.Server.Kestrel.Core
Core components of ASP.NET Core Kestrel cross-platform web server. |
GitHub repositories (371)
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. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
|
|
chocolatey/choco
Chocolatey - the package manager for Windows
|
|
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.
|
Version | Downloads | Last updated | |
---|---|---|---|
9.0.0-rc.2.24473.5 | 70,553 | 10/8/2024 | |
9.0.0-rc.1.24431.7 | 130,889 | 9/10/2024 | |
9.0.0-preview.7.24405.7 | 56,991 | 8/13/2024 | |
9.0.0-preview.6.24327.7 | 93,738 | 7/9/2024 | |
9.0.0-preview.5.24306.7 | 85,991 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 58,342 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 150,560 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 76,246 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 84,591 | 2/13/2024 | |
8.0.2 | 14,586,832 | 7/9/2024 | |
8.0.1 | 44,001,251 | 1/9/2024 | |
8.0.0 | 129,771,235 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 1,071,776 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 394,076 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 388,685 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 153,658 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 103,414 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 255,615 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 181,866 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 87,787 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 131,242 | 2/21/2023 | |
7.0.4 | 39,293,080 | 3/14/2023 | |
7.0.3 | 47,355,204 | 2/14/2023 | |
7.0.2 | 6,140,123 | 1/10/2023 | |
7.0.1 | 3,631,293 | 12/13/2022 | |
7.0.0 | 103,167,208 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 256,698 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 173,269 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 206,701 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 94,668 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 61,810 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 77,317 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 75,334 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 38,774 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 53,260 | 2/17/2022 | |
6.0.0 | 324,852,349 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 587,506 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 348,315 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 245,604 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 114,475 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 66,502 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 60,363 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 192,384 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 104,884 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 116,467 | 2/12/2021 | |
5.0.0 | 204,935,398 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 264,780 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 332,466 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 318,778 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 69,863 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 54,137 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 27,644 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 54,828 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 229,974 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 225,698 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 88,471 | 3/16/2020 | |
3.1.32 | 10,859,252 | 12/13/2022 | |
3.1.31 | 2,090,521 | 11/8/2022 | |
3.1.30 | 2,334,159 | 10/11/2022 | |
3.1.29 | 1,988,182 | 9/13/2022 | |
3.1.28 | 2,532,039 | 8/9/2022 | |
3.1.27 | 1,884,381 | 7/12/2022 | |
3.1.26 | 1,705,579 | 6/14/2022 | |
3.1.25 | 2,752,335 | 5/10/2022 | |
3.1.24 | 1,920,029 | 4/11/2022 | |
3.1.23 | 3,199,065 | 3/8/2022 | |
3.1.22 | 16,015,439 | 12/14/2021 | |
3.1.21 | 8,054,129 | 11/7/2021 | |
3.1.20 | 4,079,928 | 10/11/2021 | |
3.1.19 | 4,908,210 | 9/14/2021 | |
3.1.18 | 39,896,414 | 8/10/2021 | |
3.1.17 | 6,320,446 | 7/13/2021 | |
3.1.16 | 9,939,805 | 6/8/2021 | |
3.1.15 | 8,104,515 | 5/11/2021 | |
3.1.14 | 15,834,856 | 4/6/2021 | |
3.1.13 | 13,316,539 | 3/9/2021 | |
3.1.12 | 10,628,999 | 2/9/2021 | |
3.1.11 | 12,998,167 | 1/12/2021 | |
3.1.10 | 23,126,954 | 11/9/2020 | |
3.1.9 | 66,379,701 | 10/13/2020 | |
3.1.8 | 63,550,583 | 9/8/2020 | |
3.1.7 | 32,657,310 | 8/11/2020 | |
3.1.6 | 37,537,231 | 7/14/2020 | |
3.1.5 | 38,841,197 | 6/9/2020 | |
3.1.4 | 41,839,214 | 5/12/2020 | |
3.1.3 | 91,557,271 | 3/24/2020 | |
3.1.2 | 72,275,892 | 2/18/2020 | |
3.1.1 | 41,111,033 | 1/14/2020 | |
3.1.0 | 165,803,178 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 218,994 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 72,795 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 1,154,047 | 10/15/2019 | |
3.0.3 | 66,606,265 | 2/18/2020 | |
3.0.2 | 1,056,231 | 1/14/2020 | |
3.0.1 | 6,033,221 | 11/18/2019 | |
3.0.0 | 87,135,489 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 89,898 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 1,455,265 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 554,178 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 215,722 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 335,285 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 801,579 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 69,178 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 334,604 | 3/6/2019 | |
3.0.0-preview.19074.2 | 174,913 | 1/29/2019 | |
3.0.0-preview.18572.1 | 150,187 | 12/3/2018 | |
2.2.4 | 29,183,256 | 4/9/2019 | |
2.2.0 | 238,291,587 | 12/3/2018 | |
2.2.0-preview3-35497 | 398,395 | 10/17/2018 | |
2.2.0-preview2-35157 | 275,338 | 9/12/2018 | |
2.2.0-preview1-35029 | 151,257 | 8/22/2018 | |
2.1.10 | 68,786,864 | 4/9/2019 | |
2.1.1 | 329,327,732 | 6/18/2018 | |
2.1.0 | 351,764,635 | 5/29/2018 | |
2.1.0-rc1-final | 549,458 | 5/6/2018 | |
2.1.0-preview2-final | 621,942 | 4/10/2018 | |
2.1.0-preview1-final | 625,765 | 2/26/2018 | |
2.0.2 | 7,688,338 | 5/7/2018 | |
2.0.1 | 12,576,848 | 3/13/2018 | |
2.0.0 | 360,971,494 | 8/11/2017 | |
2.0.0-preview2-final | 147,719 | 6/28/2017 | |
2.0.0-preview1-final | 55,996 | 5/10/2017 | |
1.1.2 | 15,053,351 | 5/9/2017 | |
1.1.1 | 4,240,216 | 3/6/2017 | |
1.1.0 | 2,891,584 | 11/16/2016 | |
1.1.0-preview1-final | 16,989 | 10/24/2016 | |
1.0.2 | 2,664,103 | 3/6/2017 | |
1.0.1 | 373,844 | 12/12/2016 | |
1.0.0 | 3,442,456 | 6/27/2016 | |
1.0.0-rc2-final | 41,020 | 5/16/2016 | |
1.0.0-rc1-final | 822,883 | 11/18/2015 |