ConfigurationSectionGroup.Sections 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得 ConfigurationSectionCollection 物件,其包含這個 ConfigurationSection 物件內的所有 ConfigurationSectionGroup 物件。
public:
property System::Configuration::ConfigurationSectionCollection ^ Sections { System::Configuration::ConfigurationSectionCollection ^ get(); };
public System.Configuration.ConfigurationSectionCollection Sections { get; }
member this.Sections : System.Configuration.ConfigurationSectionCollection
Public ReadOnly Property Sections As ConfigurationSectionCollection
屬性值
ConfigurationSectionCollection 物件,其包含這個 ConfigurationSection 物件內的所有 ConfigurationSectionGroup 物件。
範例
下列程式碼範例示範如何存取 Sections 屬性。 這是類別概觀中提供之較大範例的 ConfigurationSectionGroup 一部分。
foreach (ConfigurationSection section
in sectionGroup.Sections)
{
indent("Section Name:" + section.SectionInformation.Name);
}
Dim section As ConfigurationSection
For Each section In sectionGroup.Sections
indent("Section Name:" + section.SectionInformation.Name)
Next section