Microsoft.Extensions.Configuration.Binder
9.0.4
Prefix Reserved
See the version list below for details.
dotnet add package Microsoft.Extensions.Configuration.Binder --version 9.0.4
NuGet\Install-Package Microsoft.Extensions.Configuration.Binder -Version 9.0.4
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.4" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.4" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" />
paket add Microsoft.Extensions.Configuration.Binder --version 9.0.4
#r "nuget: Microsoft.Extensions.Configuration.Binder, 9.0.4"
#addin nuget:?package=Microsoft.Extensions.Configuration.Binder&version=9.0.4
#tool nuget:?package=Microsoft.Extensions.Configuration.Binder&version=9.0.4
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 was computed. 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 was computed. 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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.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
-
net8.0
-
net9.0
NuGet packages (4.5K)
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 (394)
Showing the top 20 popular GitHub repositories that depend on Microsoft.Extensions.Configuration.Binder:
Repository | Stars |
---|---|
jellyfin/jellyfin
The Free Software Media System - Server Backend & API
|
|
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.
|
|
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.
|
|
chocolatey/choco
Chocolatey - the package manager for Windows
|
|
dotnet/orleans
Cloud Native application framework for .NET
|
|
d2phap/ImageGlass
🏞 A lightweight, versatile image viewer
|
|
JeffreySu/WeiXinMPSDK
微信全平台 .NET SDK, Senparc.Weixin for C#,支持 .NET Framework 及 .NET Core、.NET 8.0。已支持微信公众号、小程序、小游戏、微信支付、企业微信/企业号、开放平台、JSSDK、微信周边等全平台。 WeChat SDK for C#.
|
|
ThreeMammals/Ocelot
.NET API Gateway
|
|
microsoft/ailab
Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
|
|
NancyFx/Nancy
Lightweight, low-ceremony, framework for building HTTP based services on .Net and Mono
|
|
Azure/azure-sdk-for-net
This repository is for active development of the Azure SDK for .NET. For consumers of the SDK we recommend visiting our public developer docs at https://learn.microsoft.com/dotnet/azure/ or our versioned developer docs at https://azure.github.io/azure-sdk-for-net.
|
|
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
|
|
dotnetcore/Util
Util是一个.Net平台下的应用框架,旨在提升中小团队的开发能力,由工具类、分层架构基类、Ui组件,配套代码生成模板,权限等组成。
|
|
tModLoader/tModLoader
A mod to make and play Terraria mods. Supports Terraria 1.4 (and earlier) installations
|
|
dotnet/aspire
Tools, templates, and packages to accelerate building observable, production-ready apps
|
|
jamesmh/coravel
Near-zero config .NET library that makes advanced application features like Task Scheduling, Caching, Queuing, Event Broadcasting, and more a breeze!
|
|
ivanpaulovich/clean-architecture-manga
:cyclone: Clean Architecture with .NET6, C#10 and React+Redux. Use cases as central organizing structure, completely testable, decoupled from frameworks
|
|
kerryjiang/SuperSocket
SuperSocket is a high-performance, extensible socket server application framework for .NET. It provides a robust architecture for building custom network communication applications with support for multiple protocols including TCP, UDP, and WebSocket.
|
|
Scighost/Starward
Game Launcher for miHoYo - 米家游戏启动器
|
Version | Downloads | Last updated | |
---|---|---|---|
10.0.0-preview.3.25171.5 | 6,501 | 12 days ago | |
10.0.0-preview.2.25163.2 | 18,061 | a month ago | |
10.0.0-preview.1.25080.5 | 23,352 | 2 months ago | |
9.0.4 | 904,236 | 14 days ago | |
9.0.3 | 4,293,456 | a month ago | |
9.0.2 | 6,503,523 | 2 months ago | |
9.0.1 | 7,378,726 | 3 months ago | |
9.0.0 | 30,125,632 | 5 months ago | |
9.0.0-rc.2.24473.5 | 433,312 | 6 months ago | |
9.0.0-rc.1.24431.7 | 307,971 | 7 months ago | |
9.0.0-preview.7.24405.7 | 106,825 | 8 months ago | |
9.0.0-preview.6.24327.7 | 170,063 | 9 months ago | |
9.0.0-preview.5.24306.7 | 110,726 | 6/11/2024 | |
9.0.0-preview.4.24266.19 | 77,773 | 5/21/2024 | |
9.0.0-preview.3.24172.9 | 194,830 | 4/11/2024 | |
9.0.0-preview.2.24128.5 | 106,918 | 3/12/2024 | |
9.0.0-preview.1.24080.9 | 113,891 | 2/13/2024 | |
8.0.2 | 65,902,583 | 9 months ago | |
8.0.1 | 74,601,624 | 1/9/2024 | |
8.0.0 | 240,341,793 | 11/14/2023 | |
8.0.0-rc.2.23479.6 | 1,425,609 | 10/10/2023 | |
8.0.0-rc.1.23419.4 | 528,530 | 9/12/2023 | |
8.0.0-preview.7.23375.6 | 544,826 | 8/8/2023 | |
8.0.0-preview.6.23329.7 | 197,626 | 7/11/2023 | |
8.0.0-preview.5.23280.8 | 119,307 | 6/13/2023 | |
8.0.0-preview.4.23259.5 | 331,701 | 5/16/2023 | |
8.0.0-preview.3.23174.8 | 204,713 | 4/11/2023 | |
8.0.0-preview.2.23128.3 | 97,959 | 3/14/2023 | |
8.0.0-preview.1.23110.8 | 139,593 | 2/21/2023 | |
7.0.4 | 45,899,804 | 3/14/2023 | |
7.0.3 | 54,108,327 | 2/14/2023 | |
7.0.2 | 6,798,671 | 1/10/2023 | |
7.0.1 | 4,057,131 | 12/13/2022 | |
7.0.0 | 118,461,442 | 11/7/2022 | |
7.0.0-rc.2.22472.3 | 269,713 | 10/11/2022 | |
7.0.0-rc.1.22426.10 | 186,035 | 9/14/2022 | |
7.0.0-preview.7.22375.6 | 211,436 | 8/9/2022 | |
7.0.0-preview.6.22324.4 | 98,713 | 7/12/2022 | |
7.0.0-preview.5.22301.12 | 63,744 | 6/14/2022 | |
7.0.0-preview.4.22229.4 | 81,858 | 5/10/2022 | |
7.0.0-preview.3.22175.4 | 81,742 | 4/13/2022 | |
7.0.0-preview.2.22152.2 | 41,854 | 3/14/2022 | |
7.0.0-preview.1.22076.8 | 54,941 | 2/17/2022 | |
6.0.1 | 860,099 | 5 months ago | |
6.0.0 | 371,573,235 | 11/8/2021 | |
6.0.0-rc.2.21480.5 | 601,590 | 10/12/2021 | |
6.0.0-rc.1.21451.13 | 364,809 | 9/14/2021 | |
6.0.0-preview.7.21377.19 | 248,510 | 8/10/2021 | |
6.0.0-preview.6.21352.12 | 117,451 | 7/14/2021 | |
6.0.0-preview.5.21301.5 | 67,830 | 6/15/2021 | |
6.0.0-preview.4.21253.7 | 62,216 | 5/24/2021 | |
6.0.0-preview.3.21201.4 | 203,089 | 4/8/2021 | |
6.0.0-preview.2.21154.6 | 112,842 | 3/11/2021 | |
6.0.0-preview.1.21102.12 | 121,632 | 2/12/2021 | |
5.0.0 | 225,028,393 | 11/9/2020 | |
5.0.0-rc.2.20475.5 | 280,555 | 10/13/2020 | |
5.0.0-rc.1.20451.14 | 334,092 | 9/14/2020 | |
5.0.0-preview.8.20407.11 | 345,757 | 8/25/2020 | |
5.0.0-preview.7.20364.11 | 72,099 | 7/21/2020 | |
5.0.0-preview.6.20305.6 | 55,789 | 6/25/2020 | |
5.0.0-preview.5.20278.1 | 28,988 | 6/10/2020 | |
5.0.0-preview.4.20251.6 | 56,459 | 5/18/2020 | |
5.0.0-preview.3.20215.2 | 234,015 | 4/23/2020 | |
5.0.0-preview.2.20160.3 | 229,720 | 4/2/2020 | |
5.0.0-preview.1.20120.4 | 90,961 | 3/16/2020 | |
3.1.32 | 15,090,955 | 12/13/2022 | |
3.1.31 | 2,534,737 | 11/8/2022 | |
3.1.30 | 2,668,620 | 10/11/2022 | |
3.1.29 | 2,306,458 | 9/13/2022 | |
3.1.28 | 2,826,059 | 8/9/2022 | |
3.1.27 | 2,067,807 | 7/12/2022 | |
3.1.26 | 1,829,899 | 6/14/2022 | |
3.1.25 | 2,931,414 | 5/10/2022 | |
3.1.24 | 2,054,032 | 4/11/2022 | |
3.1.23 | 3,437,265 | 3/8/2022 | |
3.1.22 | 18,712,545 | 12/14/2021 | |
3.1.21 | 8,954,377 | 11/7/2021 | |
3.1.20 | 4,401,119 | 10/11/2021 | |
3.1.19 | 5,170,715 | 9/14/2021 | |
3.1.18 | 43,973,792 | 8/10/2021 | |
3.1.17 | 6,663,243 | 7/13/2021 | |
3.1.16 | 10,383,395 | 6/8/2021 | |
3.1.15 | 8,512,351 | 5/11/2021 | |
3.1.14 | 16,758,872 | 4/6/2021 | |
3.1.13 | 13,982,790 | 3/9/2021 | |
3.1.12 | 11,171,002 | 2/9/2021 | |
3.1.11 | 13,708,684 | 1/12/2021 | |
3.1.10 | 24,063,380 | 11/9/2020 | |
3.1.9 | 72,594,970 | 10/13/2020 | |
3.1.8 | 66,642,834 | 9/8/2020 | |
3.1.7 | 34,870,873 | 8/11/2020 | |
3.1.6 | 39,237,909 | 7/14/2020 | |
3.1.5 | 40,227,318 | 6/9/2020 | |
3.1.4 | 44,969,293 | 5/12/2020 | |
3.1.3 | 105,961,667 | 3/24/2020 | |
3.1.2 | 75,389,174 | 2/18/2020 | |
3.1.1 | 42,838,084 | 1/14/2020 | |
3.1.0 | 192,265,928 | 12/3/2019 | |
3.1.0-preview3.19553.2 | 221,285 | 11/13/2019 | |
3.1.0-preview2.19525.4 | 73,687 | 11/1/2019 | |
3.1.0-preview1.19506.1 | 1,190,431 | 10/15/2019 | |
3.0.3 | 77,486,993 | 2/18/2020 | |
3.0.2 | 1,066,490 | 1/14/2020 | |
3.0.1 | 6,238,116 | 11/18/2019 | |
3.0.0 | 91,387,099 | 9/23/2019 | |
3.0.0-rc1.19456.10 | 90,639 | 9/16/2019 | |
3.0.0-preview9.19423.4 | 1,484,555 | 9/4/2019 | |
3.0.0-preview8.19405.4 | 563,682 | 8/13/2019 | |
3.0.0-preview7.19362.4 | 217,556 | 7/23/2019 | |
3.0.0-preview6.19304.6 | 340,553 | 6/12/2019 | |
3.0.0-preview5.19227.9 | 807,947 | 5/6/2019 | |
3.0.0-preview4.19216.2 | 69,780 | 4/18/2019 | |
3.0.0-preview3.19153.1 | 337,583 | 3/6/2019 | |
3.0.0-preview.19074.2 | 177,259 | 1/29/2019 | |
3.0.0-preview.18572.1 | 152,716 | 12/3/2018 | |
2.2.4 | 32,499,034 | 4/9/2019 | |
2.2.0 | 260,435,837 | 12/3/2018 | |
2.2.0-preview3-35497 | 405,162 | 10/17/2018 | |
2.2.0-preview2-35157 | 283,802 | 9/12/2018 | |
2.2.0-preview1-35029 | 152,748 | 8/22/2018 | |
2.1.10 | 86,181,852 | 4/9/2019 | |
2.1.1 | 387,251,427 | 6/18/2018 | |
2.1.0 | 398,266,171 | 5/29/2018 | |
2.1.0-rc1-final | 564,191 | 5/6/2018 | |
2.1.0-preview2-final | 626,048 | 4/10/2018 | |
2.1.0-preview1-final | 630,353 | 2/26/2018 | |
2.0.2 | 7,945,112 | 5/7/2018 | |
2.0.1 | 12,779,223 | 3/13/2018 | |
2.0.0 | 386,301,029 | 8/11/2017 | |
2.0.0-preview2-final | 149,187 | 6/28/2017 | |
2.0.0-preview1-final | 57,067 | 5/10/2017 | |
1.1.2 | 15,696,643 | 5/9/2017 | |
1.1.1 | 4,321,972 | 3/6/2017 | |
1.1.0 | 3,020,073 | 11/16/2016 | |
1.1.0-preview1-final | 17,205 | 10/24/2016 | |
1.0.2 | 2,761,059 | 3/6/2017 | |
1.0.1 | 387,134 | 12/12/2016 | |
1.0.0 | 3,607,500 | 6/27/2016 | |
1.0.0-rc2-final | 41,229 | 5/16/2016 | |
1.0.0-rc1-final | 873,731 | 11/18/2015 |