ConfigurationRootExtensions.GetDebugView Method

Definition

Overloads

GetDebugView(IConfigurationRoot)

Generates a human-readable view of the configuration showing where each value came from.

GetDebugView(IConfigurationRoot, Func<ConfigurationDebugViewContext,String>)

Generates a human-readable view of the configuration showing where each value came from.

GetDebugView(IConfigurationRoot)

Source:
ConfigurationRootExtensions.cs
Source:
ConfigurationRootExtensions.cs
Source:
ConfigurationRootExtensions.cs

Generates a human-readable view of the configuration showing where each value came from.

public static string GetDebugView (this Microsoft.Extensions.Configuration.IConfigurationRoot root);

Parameters

Returns

The debug view.

Applies to

GetDebugView(IConfigurationRoot, Func<ConfigurationDebugViewContext,String>)

Source:
ConfigurationRootExtensions.cs
Source:
ConfigurationRootExtensions.cs
Source:
ConfigurationRootExtensions.cs

Generates a human-readable view of the configuration showing where each value came from.

public static string GetDebugView (this Microsoft.Extensions.Configuration.IConfigurationRoot root, Func<Microsoft.Extensions.Configuration.ConfigurationDebugViewContext,string>? processValue);

Parameters

root
IConfigurationRoot

The configuration root.

processValue
Func<ConfigurationDebugViewContext,String>

The function for processing the value, for example, hiding secrets. Parameters: ConfigurationDebugViewContext: Context of the current configuration item. returns: A string value is used to assign as the Value of the configuration section.

Returns

The debug view.

Applies to