Freigeben über


Configuration.GetSection Methode

Definition

Gibt den Konfigurationsabschnitt zurück.

Überlädt

GetSection(String)

Gibt den Konfigurationsabschnitt mithilfe des angegebenen Abschnittspfads zurück.

GetSection(String, String)

Gibt den Konfigurationsabschnitt mithilfe des angegebenen Abschnitts und der angegebenen Speicherortpfade zurück.

GetSection(String, Type)

Gibt einen stark typisierten Konfigurationsabschnitt mithilfe des angegebenen Abschnittspfads zurück.

GetSection(String, Type, String)

Gibt einen stark typisierten Konfigurationsabschnitt unter Verwendung des angegebenen Abschnitts und der angegebenen Speicherortpfade zurück.

GetSection(String)

Gibt den Konfigurationsabschnitt mithilfe des angegebenen Abschnittspfads zurück.

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

Der Pfad des zurückzugebenden Abschnitts.

Gibt zurück

Das ConfigurationSection-Objekt.

Beispiele

Im folgenden Beispiel wird der <moduleProviders> Abschnitt abgerufen und der Name jedes Elements im Abschnitt angezeigt.

public void GetGetSection(ServerManager manager)
{
    Configuration config = manager.GetAdministrationConfiguration();
    ConfigurationSection configSection = config.GetSection("moduleProviders");
    ConfigurationElementCollection elementCollection =
        configSection.GetCollection();
    Console.WriteLine("There are " + elementCollection.Count.ToString() +
        " elements in the section.");
    foreach (ConfigurationElement element in elementCollection)
    {
        Console.WriteLine("\t {0}", element.Attributes["name"].Value);
    }
}

Hinweise

Konfigurationseinstellungen sind in Abschnitten enthalten, in denen ähnliche Einstellungen zur Vereinfachung gruppiert werden. Die GetSection(String) Überladung ruft einen Konfigurationsabschnitt mithilfe des Pfads ab.

Gilt für:

GetSection(String, String)

Gibt den Konfigurationsabschnitt mithilfe des angegebenen Abschnitts und der angegebenen Speicherortpfade zurück.

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

Parameter

sectionPath
String

Der Pfad des zurückzugebenden Abschnitts.

locationPath
String

Der Speicherort, an dem nach dem Abschnitt gesucht werden soll.

Gibt zurück

Das ConfigurationSection-Objekt.

Hinweise

Die GetSection(String, String) Überladung sucht an einem angegebenen Speicherort nach dem Konfigurationsabschnitt.

Gilt für:

GetSection(String, Type)

Gibt einen stark typisierten Konfigurationsabschnitt mithilfe des angegebenen Abschnittspfads zurück.

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

Parameter

sectionPath
String

Der Pfad des zurückzugebenden Abschnitts.

type
Type

Der .NET Framework Typ, der den Abschnitt darstellt.

Gibt zurück

Das ConfigurationSection-Objekt.

Hinweise

Die GetSection(String, Type) Überladung gibt einen stark typisierten Konfigurationsabschnitt im angegebenen Abschnittspfad zurück.

Gilt für:

GetSection(String, Type, String)

Gibt einen stark typisierten Konfigurationsabschnitt unter Verwendung des angegebenen Abschnitts und der angegebenen Speicherortpfade zurück.

public:
 Microsoft::Web::Administration::ConfigurationSection ^ GetSection(System::String ^ sectionPath, Type ^ type, System::String ^ locationPath);
public Microsoft.Web.Administration.ConfigurationSection GetSection (string sectionPath, Type type, string locationPath);
member this.GetSection : string * Type * string -> Microsoft.Web.Administration.ConfigurationSection

Parameter

sectionPath
String

Der Pfad des zurückzugebenden Abschnitts.

type
Type

Der .NET Framework Typ, der den Abschnitt darstellt

locationPath
String

Der Speicherort, an dem nach dem Abschnitt gesucht werden soll.

Gibt zurück

Das ConfigurationSection-Objekt.

Hinweise

Die GetSection(String, Type, String) Überladung gibt einen stark typisierten Konfigurationsabschnitt am angegebenen Speicherort und Abschnittspfad zurück.

Gilt für: