Compartir a través de


ConfigurationSectionWithCollection.Clear (método)

Borra todos los elementos de una colección en una sección de configuración.

Sintaxis

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

Parámetros

Nombre Definición
collectionName Valor string que contiene el nombre de la colección que se va a eliminar.

Valor devuelto

Este método no devuelve ningún valor.

Ejemplo

En el ejemplo siguiente se borran los documentos predeterminados, incluidos todos los documentos predeterminados heredados, para el sitio web predeterminado. El código hará que se agregue el siguiente XML a la sección <system.webServer> del archivo Web.config para el sitio web predeterminado:

<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")  
  

Requisitos

Tipo Descripción
Remoto - IIS 7.0 en Windows Vista
- IIS 7.5 en Windows 7
- IIS 8.0 en Windows 8
- IIS 10.0 en Windows 10
Server - IIS 7.0 en Windows Server 2008
- IIS 7.5 en Windows Server 2008 R2
- IIS 8.0 en Windows Server 2012
- IIS 8.5 en Windows Server 2012 R2
- IIS 10.0 en Windows Server 2016
Producto - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0
Archivo MOF WebAdministration.mof

Consulte también

ConfigurationSectionWithCollection (clase)
DefaultDocumentSection (clase)
FileSettings (clase)