次の方法で共有


ConfigurationSectionGroup.SectionGroups プロパティ

定義

このConfigurationSectionGroup オブジェクトの子であるすべてのConfigurationSectionGroup オブジェクトを含むConfigurationSectionGroupCollection オブジェクトを取得します。

public:
 property System::Configuration::ConfigurationSectionGroupCollection ^ SectionGroups { System::Configuration::ConfigurationSectionGroupCollection ^ get(); };
public System.Configuration.ConfigurationSectionGroupCollection SectionGroups { get; }
member this.SectionGroups : System.Configuration.ConfigurationSectionGroupCollection
Public ReadOnly Property SectionGroups As ConfigurationSectionGroupCollection

プロパティ値

このConfigurationSectionGroup オブジェクトの子であるすべてのConfigurationSectionGroup オブジェクトを含むConfigurationSectionGroupCollection オブジェクト。

次のコード例は、 SectionGroups プロパティにアクセスする方法を示しています。 これは、 ConfigurationSectionGroup クラスの概要で提供される大きな例の一部です。

ConfigurationSectionGroupCollection sectionGroups =
    sectionGroup.SectionGroups;
ShowSectionGroupCollectionInfo(sectionGroups);
Dim sectionGroups As ConfigurationSectionGroupCollection = _
    sectionGroup.SectionGroups
ShowSectionGroupCollectionInfo(sectionGroups)

適用対象

こちらもご覧ください