ConfigurationSectionGroup.SectionGroups Eigenschap

Definitie

Hiermee haalt u een ConfigurationSectionGroupCollection object op dat alle ConfigurationSectionGroup objecten bevat die onderliggende objecten van dit ConfigurationSectionGroup object zijn.

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

Waarde van eigenschap

Een ConfigurationSectionGroupCollection object dat alle ConfigurationSectionGroup objecten bevat die onderliggende objecten van dit ConfigurationSectionGroup object zijn.

Voorbeelden

In het volgende codevoorbeeld ziet u hoe u toegang hebt tot de SectionGroups eigenschap. Dit maakt deel uit van een groter voorbeeld in het overzicht voor de ConfigurationSectionGroup klas.

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

Van toepassing op

Zie ook