SectionInformation.Name Eigenschaft

Definition

Ruft den Namen des zugeordneten Konfigurationsabschnitts ab.

public:
 property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String

Eigenschaftswert

Der vollständige Name des Konfigurationsabschnitts.

Beispiele

Das folgende Beispiel zeigt, wie Der Name Wert eines ConfigurationSection Objekts abgerufen wird.

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

    string sectionNameProperty = sInfo.Name;
    Console.WriteLine("Section name: {0}", 
        sectionNameProperty);
}
Public Shared Sub GetSectionNameProperty() 

    Dim sInfo As SectionInformation = _
    GetSectionInformation()
    
    Dim sectionNameProperty _
    As String = sInfo.Name
    Console.WriteLine("Section name: {0}", _
    sectionNameProperty)

End Sub

Hinweise

Der Name ist der Name des Abschnitts ohne Pfad.

Gilt für: