다음을 통해 공유


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 개체의 이름입니다.

예제

다음 예제에서는 개체의 SectionNameConfigurationSection 값을 가져오는 방법을 보여줍니다.

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 구성 상속 계층 구조를 포함하는 전체 섹션 이름입니다.

적용 대상