SingleTagSectionHandler のカスタム要素
SingleTagSectionHandler クラスを使用するカスタム構成セクションの設定を定義します。
<configuration>
** <sectionName>**
<sectionName key="value" key2="value2"/>
属性
属性はユーザー定義です。
解説
<sectionName> 要素は、<configSections> 要素の <section> タグで定義されるカスタム要素です。構成システムは、ConfigurationSettings.GetConfig が呼び出されたときに、System.Collections.IDictionary オブジェクトを返します。
例
SingleTagSectionHandler クラスで読み取る設定を指定する <sampleSection>
というカスタム要素を宣言する例を示します。
<configuration>
<configSections>
<section name="sampleSection"
type="System.Configuration.SingleTagSectionHandler" />
</configSections>
<sampleSection setting1="Value1" setting2="value two"
setting3="third value" />
</configuration>
構成ファイル
この要素は、アプリケーション構成ファイル、マシン構成ファイル (Machine.config)、およびアプリケーション ディレクトリ レベルには存在しない Web.config ファイルで使用できます。