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 、構成継承階層を含むセクション名全体です。

適用対象