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 是完整的节名称,其中包括配置继承层次结构。

适用于