<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.2" />

ConfigurationDebugViewContext

Provides data about the 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)

Initializes a new instance of ConfigurationDebugViewContext.