Configuration.Sections プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この Configuration オブジェクトで定義されているセクションのコレクションを取得します。
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
プロパティ値
この Configuration オブジェクトで定義されているセクションのコレクション。
例
次の例は、プロパティ値を Sections 取得し、コレクション内のセクションの数を表示する方法を示しています。
ConfigurationSectionCollection
sections = config.Sections;
Console.WriteLine("Sections: {0}", sections.Count.ToString());
Dim sections As ConfigurationSectionCollection = config.Sections
Console.WriteLine("Sections: {0}", sections.Count.ToString())
注釈
プロパティに Sections アクセスして、 ConfigurationSectionCollection この Configuration オブジェクトのセクションのコレクションを表すオブジェクトを取得します。 このオブジェクトが Configuration マージされた構成を表す場合は、セクションのマージされたリストが返されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET