次の方法で共有


Configuration.GetEffectiveSectionGroup メソッド

定義

構成ファイルの有効なセクション グループを取得します。

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 、セクション グループとセクションの読み取り専用マージです。 これには、ルート セクション グループが含まれます。

適用対象

こちらもご覧ください