<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0-preview.7.23375.6" />

IConfigurationSection

Represents a section of application configuration values.
using System.Runtime.CompilerServices; namespace Microsoft.Extensions.Configuration { [System.Runtime.CompilerServices.NullableContext(1)] public interface IConfigurationSection : IConfiguration { string Key { get; } string Path { get; } [System.Runtime.CompilerServices.Nullable(2)] string Value { [System.Runtime.CompilerServices.NullableContext(2)] get; [System.Runtime.CompilerServices.NullableContext(2)] set; } } }