ConfigurationSectionGroup.SectionGroups Eigenschap
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
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)