ConfigurationSectionWithCollection.Clear 方法

从配置节中的集合中清除所有元素。

语法

ConfigurationSectionWithCollection.Clear(collectionName);  
ConfigurationSectionWithCollection.Clear(collectionName)  

参数设置

名称 定义
collectionName 一个 string 值,包含要删除的集合的名称。

返回值

此方法不返回值。

示例

以下示例清除默认网站的默认文档,包括所有继承的默认文档。 该代码将导致以下 XML 添加到默认网站的 Web.config 文件的 <system.webServer> 部分:

<defaultDocument>

<files>

<clear />

</files>

</defaultDocument>

' Connect to the WMI WebAdministration namespace.  
Set oWebAdmin = GetObject("winmgmts:root\WebAdministration")  
  
' Get the default Web site.  
Set oSite= oWebAdmin.Get("Site.Name='Default Web Site'")  
  
' Get the default documents section.  
oSite.GetSection "DefaultDocumentSection", oDefaultDocumentSection  
  
' Clear the default documents that are listed in the  
' DefaultDocumentSection.Files.Files property.  
oDefaultDocumentSection.Clear("Files.Files")  
  

要求

类型 描述
客户端 - IIS 7.0(在 Windows Vista 上)
- IIS 7.5(在 Windows 7 上)
- IIS 8.0(在 Windows 8 上)
- IIS 10.0(在 Windows 10 上)
服务器 - IIS 7.0(在 Windows Server 2008 上)
- IIS 7.5(在 Windows Server 2008 R2 上)
- IIS 8.0(在 Windows Server 2012 上)
- IIS 8.5(在 Windows Server 2012 R2 上)
- IIS 10.0(在 Windows Server 2016 上)
产品 - IIS 7.0、IIS 7.5、IIS 8.0、IIS 8.5、IIS 10.0
MOF 文件 WebAdministration.mof

另请参阅

ConfigurationSectionWithCollection 类
DefaultDocumentSection 类
FileSettings 类