共用方式為


SingleTagSectionHandler 的自訂項目

定義使用 SingleTagSectionHandler 類別的自訂組態區段的設定。

<configuration>
<sectionName>

<sectionName
   key="value"
   key2="value2"/>

屬性

屬性是使用者定義的。

備註

<sectionName> 項目是由 <configSections> 項目中 <section> 標記所定義的自訂項目。當您呼叫 ConfigurationSettings.GetConfig 時,組態系統會傳回 System.Collections.IDictionary 物件。

範例

下列範例宣告一個稱為 <sampleSection> 的自訂項目,其包含 SingleTagSectionHandler 類別所讀取的設定。

<configuration>
   <configSections>
      <section name="sampleSection"
               type="System.Configuration.SingleTagSectionHandler" />
   </configSections>
   <sampleSection setting1="Value1" setting2="value two" 
                  setting3="third value" />
</configuration>

組態檔

這個項目可以在不是位於應用程式目錄層級的應用程式組態檔、電腦組態檔 (Machine.config) 和 Web.config 檔案中使用。

請參閱

組態區段結構描述 | 組態區段設定