Microsoft.Extensions.Configuration.Binder 9.0.0-rc.2.24473.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
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.
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.
|
61 |
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
|
67 |
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
|
263 |
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
|
10,006 |
Microsoft.Extensions.Logging
Logging infrastructure default implementation for Microsoft.Extensions.Logging.
|
10,035 |
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
|
61 |
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
|
65 |
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
|
73 |
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
|
74 |
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.
|
77 |
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
|
25,290 |
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.
|
73 |
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.
|
79 |
Microsoft.Identity.Client.Extensions.Msal
This package contains extensions to Microsoft Authentication Library for .NET (MSAL.NET)
|
71 |
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
|
62 |
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
|
64 |
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
|
65 |
Serilog.Settings.Configuration
Microsoft.Extensions.Configuration (appsettings.json) support for Serilog.
|
68 |
.NET Framework 4.6.2
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-rc.2.24473.5)
.NET 8.0
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-rc.2.24473.5)
.NET 9.0
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-rc.2.24473.5)
.NET Standard 2.0
- Microsoft.Extensions.Configuration.Abstractions (>= 9.0.0-rc.2.24473.5)
Version | Downloads | Last updated |
---|---|---|
9.0.0-rc.2.24473.5 | 7 | 10/12/2024 |
9.0.0-rc.1.24431.7 | 11 | 09/11/2024 |
9.0.0-preview.7.24405.7 | 10 | 08/16/2024 |
9.0.0-preview.6.24327.7 | 7 | 07/13/2024 |
9.0.0-preview.5.24306.7 | 3 | 06/14/2024 |
9.0.0-preview.4.24266.19 | 5 | 05/22/2024 |
9.0.0-preview.3.24172.9 | 9 | 04/17/2024 |
9.0.0-preview.2.24128.5 | 7 | 03/14/2024 |
9.0.0-preview.1.24080.9 | 10 | 02/20/2024 |
8.0.2 | 8 | 07/11/2024 |
8.0.1 | 9 | 01/19/2024 |
8.0.0 | 16 | 11/16/2023 |
8.0.0-rc.2.23479.6 | 14 | 10/19/2023 |
8.0.0-rc.1.23419.4 | 14 | 09/21/2023 |
8.0.0-preview.7.23375.6 | 16 | 09/06/2023 |
8.0.0-preview.6.23329.7 | 16 | 09/11/2023 |
8.0.0-preview.5.23280.8 | 17 | 06/17/2023 |
8.0.0-preview.4.23259.5 | 14 | 05/18/2023 |
8.0.0-preview.3.23174.8 | 16 | 06/17/2023 |
8.0.0-preview.2.23128.3 | 16 | 03/29/2023 |
8.0.0-preview.1.23110.8 | 23 | 03/29/2023 |
7.0.4 | 18 | 03/29/2023 |
7.0.3 | 15 | 03/29/2023 |
7.0.2 | 13 | 03/29/2023 |
7.0.1 | 17 | 01/08/2023 |
7.0.0 | 13 | 12/17/2022 |
7.0.0-rc.2.22472.3 | 22 | 10/20/2022 |
7.0.0-rc.1.22426.10 | 18 | 10/20/2022 |
7.0.0-preview.7.22375.6 | 16 | 10/20/2022 |
7.0.0-preview.6.22324.4 | 19 | 09/23/2022 |
7.0.0-preview.5.22301.12 | 19 | 09/22/2022 |
7.0.0-preview.4.22229.4 | 21 | 10/20/2022 |
7.0.0-preview.3.22175.4 | 19 | 10/20/2022 |
7.0.0-preview.2.22152.2 | 20 | 09/22/2022 |
7.0.0-preview.1.22076.8 | 22 | 09/21/2022 |
6.0.2-mauipre.1.22102.15 | 20 | 10/20/2022 |
6.0.2-mauipre.1.22054.8 | 20 | 09/23/2022 |
6.0.0 | 18 | 10/20/2022 |
6.0.0-rc.2.21480.5 | 18 | 10/20/2022 |
6.0.0-rc.1.21451.13 | 18 | 09/24/2022 |
6.0.0-preview.7.21377.19 | 20 | 09/24/2022 |
6.0.0-preview.6.21352.12 | 16 | 09/24/2022 |
6.0.0-preview.5.21301.5 | 25 | 09/22/2022 |
6.0.0-preview.4.21253.7 | 16 | 09/25/2022 |
6.0.0-preview.3.21201.4 | 21 | 10/20/2022 |
6.0.0-preview.2.21154.6 | 22 | 09/26/2022 |
6.0.0-preview.1.21102.12 | 21 | 09/24/2022 |
5.0.0 | 21 | 07/12/2022 |
5.0.0-rc.2.20475.5 | 19 | 10/20/2022 |
5.0.0-rc.1.20451.14 | 18 | 09/23/2022 |
5.0.0-preview.8.20407.11 | 23 | 07/01/2022 |
5.0.0-preview.7.20364.11 | 23 | 07/28/2022 |
5.0.0-preview.6.20305.6 | 17 | 10/20/2022 |
5.0.0-preview.5.20278.1 | 22 | 09/26/2022 |
5.0.0-preview.4.20251.6 | 17 | 10/20/2022 |
5.0.0-preview.3.20215.2 | 21 | 09/23/2022 |
5.0.0-preview.2.20160.3 | 20 | 09/22/2022 |
5.0.0-preview.1.20120.4 | 17 | 09/25/2022 |
3.1.32 | 11 | 01/08/2023 |
3.1.31 | 15 | 01/08/2023 |
3.1.30 | 16 | 10/20/2022 |
3.1.29 | 26 | 09/22/2022 |
3.1.28 | 20 | 09/23/2022 |
3.1.27 | 19 | 09/21/2022 |
3.1.26 | 17 | 10/20/2022 |
3.1.25 | 14 | 10/20/2022 |
3.1.24 | 20 | 09/27/2022 |
3.1.23 | 18 | 06/27/2022 |
3.1.22 | 15 | 07/23/2022 |
3.1.21 | 17 | 09/24/2022 |
3.1.20 | 15 | 09/22/2022 |
3.1.19 | 15 | 09/23/2022 |
3.1.18 | 20 | 10/20/2022 |
3.1.17 | 15 | 09/21/2022 |
3.1.16 | 18 | 09/25/2022 |
3.1.15 | 25 | 06/27/2022 |
3.1.14 | 17 | 09/23/2022 |
3.1.13 | 16 | 06/29/2022 |
3.1.12 | 19 | 10/20/2022 |
3.1.11 | 20 | 06/27/2022 |
3.1.10 | 24 | 09/22/2022 |
3.1.9 | 21 | 09/24/2022 |
3.1.8 | 26 | 07/02/2022 |
3.1.7 | 17 | 09/26/2022 |
3.1.6 | 23 | 09/25/2022 |
3.1.5 | 10,027 | 06/27/2022 |
3.1.4 | 19 | 09/24/2022 |
3.1.3 | 10,006 | 06/27/2022 |
3.1.2 | 17 | 09/23/2022 |
3.1.1 | 14 | 09/21/2022 |
3.1.0 | 264 | 08/02/2022 |
3.1.0-preview3.19553.2 | 21 | 09/24/2022 |
3.1.0-preview2.19525.4 | 20 | 09/26/2022 |
3.1.0-preview1.19506.1 | 22 | 10/20/2022 |
3.0.3 | 19 | 10/20/2022 |
3.0.2 | 19 | 09/21/2022 |
3.0.1 | 17 | 09/21/2022 |
3.0.0 | 21 | 07/30/2022 |
3.0.0-rc1.19456.10 | 17 | 09/23/2022 |
3.0.0-preview9.19423.4 | 19 | 09/23/2022 |
3.0.0-preview8.19405.4 | 11 | 09/25/2022 |
3.0.0-preview7.19362.4 | 23 | 09/23/2022 |
3.0.0-preview6.19304.6 | 15 | 10/20/2022 |
3.0.0-preview5.19227.9 | 18 | 10/20/2022 |
3.0.0-preview4.19216.2 | 22 | 09/26/2022 |
3.0.0-preview3.19153.1 | 18 | 09/22/2022 |
3.0.0-preview.19074.2 | 15 | 09/25/2022 |
3.0.0-preview.18572.1 | 17 | 10/20/2022 |
2.2.4 | 20 | 08/01/2022 |
2.2.0 | 20 | 07/21/2022 |
2.2.0-preview3-35497 | 17 | 07/09/2022 |
2.2.0-preview2-35157 | 19 | 09/24/2022 |
2.2.0-preview1-35029 | 18 | 09/22/2022 |
2.1.10 | 14 | 10/20/2022 |
2.1.1 | 20 | 10/20/2022 |
2.1.0 | 15 | 06/27/2022 |
2.1.0-rc1-final | 23 | 10/20/2022 |
2.1.0-preview2-final | 24 | 06/27/2022 |
2.1.0-preview1-final | 17 | 10/20/2022 |
2.0.2 | 17 | 09/23/2022 |
2.0.1 | 17 | 09/22/2022 |
2.0.0 | 25,240 | 06/27/2022 |
2.0.0-preview2-final | 28 | 07/29/2022 |
2.0.0-preview1-final | 24 | 09/22/2022 |
1.1.2 | 21 | 10/20/2022 |
1.1.1 | 19 | 10/20/2022 |
1.1.0 | 14 | 10/20/2022 |
1.1.0-preview1-final | 25 | 10/20/2022 |
1.0.2 | 15 | 09/21/2022 |
1.0.1 | 20 | 09/25/2022 |
1.0.0 | 14 | 07/06/2022 |
1.0.0-rc2-final | 21 | 10/20/2022 |
1.0.0-rc1-final | 20 | 10/20/2022 |