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:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ GetDebugView(Microsoft::Extensions::Configuration::IConfigurationRoot ^ root);
public static string GetDebugView (this Microsoft.Extensions.Configuration.IConfigurationRoot root);
static member GetDebugView : Microsoft.Extensions.Configuration.IConfigurationRoot -> string
<Extension()>
Public Function GetDebugView (root As IConfigurationRoot) As String

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:
[System::Runtime::CompilerServices::Extension]
 static System::String ^ GetDebugView(Microsoft::Extensions::Configuration::IConfigurationRoot ^ root, Func<Microsoft::Extensions::Configuration::ConfigurationDebugViewContext, System::String ^> ^ processValue);
public static string GetDebugView (this Microsoft.Extensions.Configuration.IConfigurationRoot root, Func<Microsoft.Extensions.Configuration.ConfigurationDebugViewContext,string>? processValue);
static member GetDebugView : Microsoft.Extensions.Configuration.IConfigurationRoot * Func<Microsoft.Extensions.Configuration.ConfigurationDebugViewContext, string> -> string
<Extension()>
Public Function GetDebugView (root As IConfigurationRoot, processValue As Func(Of ConfigurationDebugViewContext, String)) As String

Parameters

root
IConfigurationRoot

The configuration root.

processValue
Func<ConfigurationDebugViewContext,String>

A function for processing the value, for example, to hide secrets, where the ConfigurationDebugViewContext represents the context of the current configuration item, and the string is assigned as the value of the configuration section.

Returns

The debug view.

Applies to