<configuration> 的 <configSections> 元素

包含配置节和命名空间声明。

configuration
  <configSections>

特性

父元素

描述
configuration 公共语言运行时和 .NET Framework 应用程序所使用的每个配置文件中的根元素。

子元素

说明
<section> 包含配置节声明。
<sectionGroup> 定义配置节的命名空间。

备注

如果此元素在配置文件中,它必须是 <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 文件。

请参阅