ConfigurationSectionGroup.SectionGroups Eigenschaft
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Ruft ein ConfigurationSectionGroupCollection Objekt ab, das alle Objekte enthält, die ConfigurationSectionGroup untergeordnete Elemente dieses ConfigurationSectionGroup Objekts sind.
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
Eigenschaftswert
Ein ConfigurationSectionGroupCollection Objekt, das alle Objekte enthält, die ConfigurationSectionGroup untergeordnete Elemente dieses ConfigurationSectionGroup Objekts sind.
Beispiele
Das folgende Codebeispiel zeigt, wie Sie auf die SectionGroups Eigenschaft zugreifen. Dies ist Teil eines größeren Beispiels, das in der Übersicht für die ConfigurationSectionGroup Klasse bereitgestellt wird.
ConfigurationSectionGroupCollection sectionGroups =
sectionGroup.SectionGroups;
ShowSectionGroupCollectionInfo(sectionGroups);
Dim sectionGroups As ConfigurationSectionGroupCollection = _
sectionGroup.SectionGroups
ShowSectionGroupCollectionInfo(sectionGroups)