Aracılığıyla paylaş


SectionInformation.SectionName Özellik

Tanım

İlişkili yapılandırma bölümünün adını alır.

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

Özellik Değeri

İlişkili ConfigurationSection nesnenin adı.

Örnekler

Aşağıdaki örnekte bir ConfigurationSection nesnenin değerinin SectionName nasıl alınacakları gösterilmektedir.

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

Açıklamalar

Özellik SectionName değeri, yapılandırma devralma hiyerarşisini içeren tam bölüm adıdır.

Şunlara uygulanır