IConfiguration.GetSection(String) Méthode

Définition

Obtient une sous-section de configuration avec la clé spécifiée.

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

Paramètres

key
String

Clé de la section de configuration.

Retours

Le IConfigurationSection.

Remarques

Cette méthode ne retournera nulljamais . Si aucune sous-section correspondante n’est trouvée avec la clé spécifiée, un vide IConfigurationSection est retourné.

Vous pouvez atteindre une sous-sous-section en passant « section1 :section2 :section. » pour key.

S’applique à