SectionInformation.SectionName Свойство

Определение

Возвращает имя связанного раздела конфигурации.

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

Значение свойства

Имя связанного объекта ConfigurationSection.

Примеры

В следующем примере показано, как получить SectionName значение ConfigurationSection объекта .

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

    string sectionName = sInfo.SectionName;
    Console.WriteLine("Section type: {0}", sectionName);
}
Public Shared Sub GetSectionName() 
    Dim sInfo As SectionInformation = _
    GetSectionInformation()
    
    Dim sectionName As String = _
    sInfo.SectionName
    Console.WriteLine("Section type: {0}", _
    sectionName)
End Sub

Комментарии

Значение SectionName свойства — это полное имя раздела, которое включает иерархию наследования конфигурации.

Применяется к