ConfigurationSectionGroup.SectionGroups Egenskap
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Hämtar ett ConfigurationSectionGroupCollection objekt som innehåller alla ConfigurationSectionGroup objekt som är underordnade till det här ConfigurationSectionGroup objektet.
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
Egenskapsvärde
Ett ConfigurationSectionGroupCollection objekt som innehåller alla ConfigurationSectionGroup objekt som är underordnade till det här ConfigurationSectionGroup objektet.
Exempel
Följande kodexempel visar hur du kommer åt egenskapen SectionGroups . Det här är en del av ett större exempel i översikten ConfigurationSectionGroup för klassen.
ConfigurationSectionGroupCollection sectionGroups =
sectionGroup.SectionGroups;
ShowSectionGroupCollectionInfo(sectionGroups);
Dim sectionGroups As ConfigurationSectionGroupCollection = _
sectionGroup.SectionGroups
ShowSectionGroupCollectionInfo(sectionGroups)