SectionInformation.Type プロパティ

定義

セクションのクラス名を取得または設定します。

public:
 property System::String ^ Type { System::String ^ get(); void set(System::String ^ value); };
public string Type { get; set; }
member this.Type : string with get, set
Public Property Type As String

プロパティ値

この ConfigurationSection セクションに関連付けられているクラスの名前。

例外

選択した値が null または空の文字列 ("") です。

選択した値が定義済みの値と競合します。

次の例は、オブジェクトの値を取得する Type 方法を ConfigurationSection 示しています。

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

    string sectionType = sInfo.Type;
    Console.WriteLine("Section type: {0}", sectionType);
}
Public Shared Sub GetSectionType() 
    Dim sInfo As SectionInformation = _
    GetSectionInformation()
    
    Dim sectionType As String = sInfo.Type
    Console.WriteLine("Section type: {0}", _
    sectionType)

End Sub

注釈

プロパティは Type 、 クラスのこのインスタンスを処理するセクション クラスの名前を ConfigurationSection 返します。

適用対象