Microsoft.Extensions.Configuration.IConfiguration
Represents a set of key/value application configuration properties.
namespace Microsoft.Extensions.Configuration
{
public interface IConfiguration
{
[Nullable(2)]
string this[string key] {
[return: Nullable(2)]
get;
[param: Nullable(2)]
set;
}
IConfigurationSection GetSection(string key);
IEnumerable<IConfigurationSection> GetChildren();
IChangeToken GetReloadToken();
}
}