Microsoft.Extensions.Configuration.Abstractions 10.0.1

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.

Key Features

  • Abstractions for string key-value pair configuration sources and sections
  • Path conventions of keys establishing a heirachy of values
  • Support for multiple configuration sources, aggregating and defining precdence for values
  • Support for reload on change

How to Use

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"

Main Types

The main types provided by this library are:

  • Microsoft.Extensions.Configuration.IConfiguration
  • Microsoft.Extensions.Configuration.IConfigurationBuilder
  • Microsoft.Extensions.Configuration.IConfigurationProvider
  • Microsoft.Extensions.Configuration.IConfigurationRoot
  • Microsoft.Extensions.Configuration.IConfigurationSection

Additional Documentation

Feedback & Contributing

Microsoft.Extensions.Caching.Abstractions 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.Abstractions.

Packages Downloads
DevExpress.ExpressApp.MultiTenancy.AspNetCore.Xpo
Contains functionality required to create multi-tenant XAF WinForms Middle Tier services with XPO ORM
11
DevExpress.ExpressApp.ReportsV2.Blazor
The Reports module for XAF ASP.NET Core Blazor apps.
11
DevExpress.ExpressApp.MultiTenancy.AspNetCore
Contains functionality required to create multi-tenant XAF Web API and Middle Tier services
10
DevExpress.ExpressApp.Security.AspNetCore.Xpo
Contains additional Security System services for XAF and non-XAF ASP.NET Core applications.
10
DevExpress.ExpressApp.Office.Blazor
The Office module for XAF ASP.NET Core Blazor apps.
10
DevExpress.ExpressApp.AspNetCore
Contains additional services for XAF and non-XAF ASP.NET Core applications.
9
DevExpress.ExpressApp.AuditTrail.Xpo
The Audit Trail module for XPO-based XAF apps.
9
DevExpress.ExpressApp.Dashboards.Blazor
The Dashboards module for XAF ASP.NET Core Blazor apps.
9
DevExpress.ExpressApp.EFCore
The core functionality for Entity Framework Core-based XAF apps.
9
DevExpress.ExpressApp.MultiTenancy
Contains functionality required to create multi-tenant XAF applications
9
DevExpress.ExpressApp.MultiTenancy.AspNetCore.EFCore
CContains functionality required to create multi-tenant XAF WinForms Middle Tier services with EFCore ORM
9
DevExpress.ExpressApp.MultiTenancy.Blazor
Contains functionality required to create multi-tenant XAF ASP.NET Core Blazor applications
9
DevExpress.ExpressApp.MultiTenancy.Blazor.EFCore
Contains functionality required to create multi-tenant XAF ASP.NET Core Blazor applications with EF Core ORM
9
DevExpress.ExpressApp.MultiTenancy.Blazor.Xpo
Contains functionality required to create multi-tenant XAF ASP.NET Core Blazor applications with XPO ORM
9
DevExpress.ExpressApp.MultiTenancy.EFCore
Contains functionality required to create multi-tenant XAF applications with EF Core ORM
9
DevExpress.ExpressApp.MultiTenancy.WebApi.EFCore
Contains functionality required to create multi-tenant XAF Web API services with EFCore ORM
9
DevExpress.ExpressApp.MultiTenancy.WebApi.Xpo
Contains functionality required to create multi-tenant XAF Web API services with XPO ORM
9
DevExpress.ExpressApp.MultiTenancy.Xpo
Contains functionality required to create multi-tenant XAF applications with XPO ORM
9
DevExpress.ExpressApp.Office.Blazor
The Office module for XAF ASP.NET Core Blazor apps.
9
DevExpress.ExpressApp.ReportsV2
The base Reports module for XAF apps.
9

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

.NET Framework 4.6.2

.NET 8.0

.NET 9.0

.NET 10.0

.NET Standard 2.0

Version Downloads Last updated
10.0.1 0 12/22/2025