Freigeben über


ManagementConfiguration.GetSection Methode

Definition

Ruft den angegebenen Konfigurationsabschnitt ab.

Überlädt

GetSection(String)

Ruft den Konfigurationsabschnitt am angegebenen Pfad ab.

GetSection(String, Type)

Ruft den Konfigurationsabschnitt am angegebenen Abschnittspfad ab.

GetSection(String, ManagementConfigurationPath, Boolean)

Ruft den Konfigurationsabschnitt am angegebenen Pfad ab.

GetSection(String, Type, ManagementConfigurationPath, Boolean)

Ruft den Konfigurationsabschnitt am angegebenen Pfad ab.

GetSection(String)

Ruft den Konfigurationsabschnitt am angegebenen Pfad ab.

public:
 Microsoft::Web::Administration::ConfigurationSection ^ GetSection(System::String ^ sectionPath);
public Microsoft.Web.Administration.ConfigurationSection GetSection (string sectionPath);
member this.GetSection : string -> Microsoft.Web.Administration.ConfigurationSection
Public Function GetSection (sectionPath As String) As ConfigurationSection

Parameter

sectionPath
String

Die Abschnittszeichenfolge.

Gibt zurück

Ein ConfigurationSection , der den Inhalt des angegebenen Abschnitts enthält.

Beispiele

Im folgenden Beispiel wird die GetSection(String) -Methode verwendet, um den Inhalt des Abschnitts "appSettings" abzurufen.

public class DemoModuleService : ModuleService {

    [ModuleServiceMethod]
    public ArrayList GetSettings() {
        ManagementConfiguration manConfig = this.ManagementUnit.Configuration;
        ConfigurationSection appSetSect = manConfig.GetSection("appSettings");
        ConfigurationElementCollection settings = appSetSect.GetCollection();

}
}

Gilt für:

GetSection(String, Type)

Ruft den Konfigurationsabschnitt am angegebenen Abschnittspfad ab.

public:
 Microsoft::Web::Administration::ConfigurationSection ^ GetSection(System::String ^ sectionPath, Type ^ sectionType);
public Microsoft.Web.Administration.ConfigurationSection GetSection (string sectionPath, Type sectionType);
member this.GetSection : string * Type -> Microsoft.Web.Administration.ConfigurationSection
Public Function GetSection (sectionPath As String, sectionType As Type) As ConfigurationSection

Parameter

sectionPath
String

Der Abschnittspfad.

sectionType
Type

Der Abschnitt Type.

Gibt zurück

Ein ConfigurationSection , der den Inhalt des angegebenen Abschnitts enthält.

Gilt für:

GetSection(String, ManagementConfigurationPath, Boolean)

Ruft den Konfigurationsabschnitt am angegebenen Pfad ab.

public:
 Microsoft::Web::Administration::ConfigurationSection ^ GetSection(System::String ^ sectionPath, Microsoft::Web::Management::Server::ManagementConfigurationPath ^ path, bool respectDelegation);
public Microsoft.Web.Administration.ConfigurationSection GetSection (string sectionPath, Microsoft.Web.Management.Server.ManagementConfigurationPath path, bool respectDelegation);
member this.GetSection : string * Microsoft.Web.Management.Server.ManagementConfigurationPath * bool -> Microsoft.Web.Administration.ConfigurationSection
Public Function GetSection (sectionPath As String, path As ManagementConfigurationPath, respectDelegation As Boolean) As ConfigurationSection

Parameter

sectionPath
String

Der Abschnittspfad.

path
ManagementConfigurationPath

Ein ManagementConfigurationPath , der den Verwaltungskonfigurationspfad angibt.

respectDelegation
Boolean

true die Übertragung zu respektieren; false , um die Delegierung zu ignorieren.

Gibt zurück

Ein ConfigurationSection , der den Inhalt des angegebenen Abschnitts enthält.

Gilt für:

GetSection(String, Type, ManagementConfigurationPath, Boolean)

Ruft den Konfigurationsabschnitt am angegebenen Pfad ab.

public:
 Microsoft::Web::Administration::ConfigurationSection ^ GetSection(System::String ^ sectionPath, Type ^ sectionType, Microsoft::Web::Management::Server::ManagementConfigurationPath ^ path, bool respectDelegation);
public Microsoft.Web.Administration.ConfigurationSection GetSection (string sectionPath, Type sectionType, Microsoft.Web.Management.Server.ManagementConfigurationPath path, bool respectDelegation);
member this.GetSection : string * Type * Microsoft.Web.Management.Server.ManagementConfigurationPath * bool -> Microsoft.Web.Administration.ConfigurationSection
Public Function GetSection (sectionPath As String, sectionType As Type, path As ManagementConfigurationPath, respectDelegation As Boolean) As ConfigurationSection

Parameter

sectionPath
String

Der Abschnittspfad.

sectionType
Type

Der Abschnitt Type.

path
ManagementConfigurationPath

Ein ManagementConfigurationPath , der den Verwaltungskonfigurationspfad angibt.

respectDelegation
Boolean

true die Übertragung zu respektieren; false , um die Delegierung zu ignorieren.

Gibt zurück

Ein ConfigurationSection , der den Inhalt des angegebenen Abschnitts enthält.

Gilt für: