SectionInformation.Name Vlastnost

Definice

Získá název přidruženého oddílu konfigurace.

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

Hodnota vlastnosti

Úplný název oddílu konfigurace.

Příklady

Následující příklad ukazuje, jak získat Name hodnotu objektu ConfigurationSection .

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

Poznámky

Je Name název oddílu bez cesty.

Platí pro