IConfigurationSection
Represents a section of application configuration values.
namespace Microsoft.Extensions.Configuration
{
public interface IConfigurationSection : IConfiguration
{
string Key { get; }
string Path { get; }
string Value { get; set; }
}
}