NameValueSectionHandler 和 DictionarySectionHandler 的 <add> 項目
加入自訂的應用程式設定。每一個 <add> 標記 (Tag) 都包含索引鍵/值配對。
<configuration>
<section name>
<add>
<add
key="key"
value="value"/>
必要屬性
屬性 | 說明 |
---|---|
key | 指定設定的名稱。 |
value | 指定設定的值。 |
範例
下列範例顯示如何定義自訂的組態區段,以及使用 <add> 項目將設定放置在區段中。
<configuration>
<configSections>
<section name="dictionarySample"
type="System.Configuration.DictionarySectionHandler,System"/>
</configSections>
<dictionarySample>
<add key="myKey" value="myValue"/>
</dictionarySample>
</configuration>
組態檔
這個項目可以在不是位於應用程式目錄層級的應用程式組態檔、電腦組態檔 (Machine.config) 和 Web.config 檔案中使用。
請參閱
組態區段結構描述 | 組態區段設定 | NameValueSectionHandler 和 DictionarySectionHandler 的自訂項目