SectionInformation.GetParentSection Methode

Definition

Ruft den Konfigurationsabschnitt ab, der den diesem Objekt zugeordneten Konfigurationsabschnitt enthält.

public:
 System::Configuration::ConfigurationSection ^ GetParentSection();
public System.Configuration.ConfigurationSection GetParentSection ();
member this.GetParentSection : unit -> System.Configuration.ConfigurationSection
Public Function GetParentSection () As ConfigurationSection

Gibt zurück

Der Konfigurationsabschnitt enthält die diesem ConfigurationSection-Objekt zugeordnete SectionInformation.

Ausnahmen

Die Methode wird von einem übergeordneten Abschnitt aufgerufen.

Beispiele

Im folgenden Beispiel wird die Verwendung der GetParentSection-Methode gezeigt.

static public void GetParentSection()
{
    SectionInformation sInfo = 
        GetSectionInformation();

    ConfigurationSection parentSection =
        sInfo.GetParentSection();

    Console.WriteLine("Parent section : {0}",
        parentSection.SectionInformation.Name);
}
Public Shared Sub GetParentSection() 

    Dim sInfo As SectionInformation = _
    GetSectionInformation()
    
    Dim parentSection _
    As ConfigurationSection = _
    sInfo.GetParentSection()
    
    Console.WriteLine("Parent section : {0}", _
    parentSection.SectionInformation.Name)

End Sub

Hinweise

Wenn dieses ConfigurationSection Objekt über keine übergeordneten Abschnitte verfügt, gibt die GetParentSection Methode denselben Wert wie die Name -Eigenschaft zurück.

Gilt für: