SectionInformation.Name Property

 

Gets the name of the associated configuration section.

Namespace:   System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)

Public ReadOnly Property Name As String

Property Value

Type: System.String

The complete name of the configuration section.

The Name is the name of the section without the path.

The following example shows how to get the Name value of a ConfigurationSection object.

Public Shared Sub GetSectionNameProperty() 

    Dim sInfo As SectionInformation = _
    GetSectionInformation()

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

End Sub 'GetSectionNameProperty

.NET Framework
Available since 2.0
Return to top
Show: