Microsoft.Extensions.Configuration.Abstractions 8.0.0-preview.4.23259.5

About

Provides abstractions of key-value pair based configuration. Interfaces defined in this package are implemented by classes in Microsoft.Extensions.Configuration and other configuration packages.

Commonly used types:

For more information, see the documentation: Configuration in .NET.

Example

The example below shows a small code sample using this library and trying out the ConfigurationKeyName attribute available since .NET 6:

public class MyClass
{
    [ConfigurationKeyName("named_property")]
    public string NamedProperty { get; set; }
}

Given the simple class above, we can create a dictionary to hold the configuration data and use it as the memory source to build a configuration section:

var dic = new Dictionary<string, string>
{
    {"named_property", "value for named property"},
};

var config = new ConfigurationBuilder()
    .AddInMemoryCollection(dic)
    .Build();

var options = config.Get<MyClass>();
Console.WriteLine(options.NamedProperty); // returns "value for named property"

Showing the top 20 packages that depend on Microsoft.Extensions.Configuration.Abstractions.

Packages Downloads
Talk.Extensions
Talk扩展
179
Talk.Extensions
Talk扩展
169
Talk.Extensions
Talk扩展
166
Talk.Extensions
Talk扩展
145
Microsoft.Extensions.Configuration.EnvironmentVariables
Environment variables configuration provider implementation for Microsoft.Extensions.Configuration. This package enables you to read configuration parameters from environment variables. You can use EnvironmentVariablesExtensions.AddEnvironmentVariables extension method on IConfigurationBuilder to add the environment variables configuration provider to the configuration builder.
140
Talk.Extensions
Talk扩展
139
Talk.Extensions
Talk扩展
138
Talk.Extensions
Talk扩展
136
Talk.Extensions
Talk扩展
130
Microsoft.Extensions.Configuration.Binder
Functionality to bind an object to data in configuration providers for Microsoft.Extensions.Configuration.
129
Microsoft.Extensions.Hosting.Abstractions
Hosting and startup abstractions for applications.
127
Talk.Extensions
Talk扩展
124
Talk.Extensions
Talk扩展
122
Microsoft.Extensions.Hosting
Hosting and startup infrastructures for applications.
118
Microsoft.Extensions.Options.ConfigurationExtensions
Provides additional configuration specific functionality related to Options.
116
Talk.Extensions
Talk扩展
114
Talk.Extensions
Talk扩展
111
Talk.Extensions
Talk扩展
110
Talk.Extensions
Talk扩展
109

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

.NET Framework 4.6.2

.NET 6.0

.NET 7.0

.NET 8.0

.NET Standard 2.0

Version Downloads Last updated
8.0.0-preview.4.23259.5 188 7/7/2023
7.0.0 170 2/28/2023
7.0.0-preview.5.22301.12 147 7/3/2023
7.0.0-preview.4.22229.4 103 7/9/2023
6.0.0 113 2/28/2023
6.0.0-preview.6.21352.12 115 7/8/2023
6.0.0-preview.1.21102.12 77 7/12/2023
5.0.0 93 7/4/2023
5.0.0-rc.2.20475.5 127 7/12/2023
5.0.0-preview.4.20251.6 120 7/4/2023
3.1.32 103 7/5/2023
3.1.29 122 7/3/2023
3.1.27 133 7/3/2023
3.1.17 51 5/4/2023
3.1.15 123 7/14/2023
3.1.10 65 4/20/2023
3.1.9 82 7/12/2023
3.1.8 113 3/16/2023
3.1.4 104 7/3/2023
3.1.0 89 3/21/2023
3.0.2 151 7/6/2023
3.0.0-preview9.19423.4 86 6/28/2023
3.0.0-preview7.19362.4 123 7/7/2023
2.2.0 88 3/16/2023
2.1.0 74 7/5/2023
2.1.0-preview2-final 119 7/10/2023
2.0.2 117 7/2/2023
2.0.0 110 3/16/2023
1.1.2 76 7/8/2023
1.1.0 101 7/9/2023
1.1.0-preview1-final 128 7/8/2023
1.0.0 95 7/8/2023