ConfigurationManager.GetSection(String) Method

Definition

Gets a configuration subsection with the specified key.

public:
 virtual Microsoft::Extensions::Configuration::IConfigurationSection ^ GetSection(System::String ^ key);
public Microsoft.Extensions.Configuration.IConfigurationSection GetSection (string key);
abstract member GetSection : string -> Microsoft.Extensions.Configuration.IConfigurationSection
override this.GetSection : string -> Microsoft.Extensions.Configuration.IConfigurationSection
Public Function GetSection (key As String) As IConfigurationSection

Parameters

key
String

The key of the configuration section.

Returns

The configuration section for the specified key.

Implements

Remarks

The name of the configuration section is case-insensitive.

Applies to