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

ConfigurationDebugViewContext

Provides the data about current item of the configuration.

Gets the IConfigurationProvider that was used to get the value of the current item.

public string Key { get; }

Gets the key of the current item.

public string Path { get; }

Gets the path of the current item.

public string Value { get; }

Gets the value of the current item.

public ConfigurationDebugViewContext(string path, string key, string value, IConfigurationProvider configurationProvider)