SectionInformation.GetParentSection メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このオブジェクトに関連付けられている構成セクションが含まれている構成セクションを取得します。
public:
System::Configuration::ConfigurationSection ^ GetParentSection();
public System.Configuration.ConfigurationSection GetParentSection ();
member this.GetParentSection : unit -> System.Configuration.ConfigurationSection
Public Function GetParentSection () As ConfigurationSection
戻り値
この ConfigurationSection オブジェクトに関連付けられている SectionInformation が含まれている構成セクション。
例外
メソッドが親セクションから呼び出されます。
例
GetParentSection メソッドを使用する方法の例を次に示します。
static public void GetParentSection()
{
SectionInformation sInfo =
GetSectionInformation();
ConfigurationSection parentSection =
sInfo.GetParentSection();
Console.WriteLine("Parent section : {0}",
parentSection.SectionInformation.Name);
}
Public Shared Sub GetParentSection()
Dim sInfo As SectionInformation = _
GetSectionInformation()
Dim parentSection _
As ConfigurationSection = _
sInfo.GetParentSection()
Console.WriteLine("Parent section : {0}", _
parentSection.SectionInformation.Name)
End Sub
注釈
この ConfigurationSection オブジェクトに親セクションがない場合、メソッドは GetParentSection プロパティと同じ値を Name 返します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET