Configuration.GetEffectiveSectionGroup メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
構成ファイルの有効なセクション グループを取得します。
public:
Microsoft::Web::Administration::SectionGroup ^ GetEffectiveSectionGroup();
public Microsoft.Web.Administration.SectionGroup GetEffectiveSectionGroup ();
member this.GetEffectiveSectionGroup : unit -> Microsoft.Web.Administration.SectionGroup
Public Function GetEffectiveSectionGroup () As SectionGroup
戻り値
SectionGroupセクション グループとセクションを含む オブジェクト。
例
次の例では、 オブジェクトのセクション グループを Configuration 取得し、セクション グループ内の各セクション定義の名前を表示します。
public void GetGetEffectiveSectionGroup(ServerManager manager)
{
Configuration config = manager.GetAdministrationConfiguration();
SectionGroup sectionGroup = config.GetEffectiveSectionGroup();
Console.WriteLine("There are " + sectionGroup.Sections.Count.ToString() +
" Sections in the section group: " + sectionGroup.SectionGroups.ToString());
foreach (SectionDefinition def in sectionGroup.Sections)
{
Console.WriteLine("\t{0}", def.Name);
}
}
注釈
オブジェクトは SectionGroup 、セクション グループとセクションの読み取り専用マージです。 これには、ルート セクション グループが含まれます。