<configSections> 要素
構成セクションと名前空間の宣言を指定します。
<configuration>
<configSections>
<configSections>
</configSections>
子要素
要素 | 説明 |
---|---|
<section> | 構成セクションの宣言を指定します。 |
<sectionGroup> | 構成セクションの名前空間を定義します。 |
<configSections> の <remove> 要素 | 定義済みのセクションまたはセクション グループを削除します。 |
<configSections> の <clear> 要素 | 以前に定義したセクションとセクション グループをすべて消去します。 |
解説
この要素を構成ファイルで使用する場合は、<configuration> 要素の最初の子要素にする必要があります。
例
構成セクションを定義し、そのセクションの設定を定義する例を示します。
<configuration>
<configSections>
<section name="sampleSection"
type="System.Configuration.SingleTagSectionHandler" />
</configSections>
<sampleSection setting1="Value1" setting2="value two"
setting3="third value" />
</configuration>
構成ファイル
この要素は、アプリケーション構成ファイル、マシン構成ファイル (Machine.config)、およびアプリケーション ディレクトリ レベルには存在しない Web.config ファイルで使用できます。