SectionInformation.Type プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
セクションのクラス名を取得または設定します。
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 返します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET