Método ConfigurationSectionWithCollection.Clear
Limpa todos os elementos de uma coleção em uma seção de configuração.
Sintaxe
ConfigurationSectionWithCollection.Clear(collectionName);
ConfigurationSectionWithCollection.Clear(collectionName)
Parâmetros
Nome | Definição |
---|---|
collectionName |
Um valor string que contém o nome da coleção a ser removida. |
Valor de retorno
Esse método não retorna um valor.
Exemplo
O exemplo a seguir limpa os documentos padrão, incluindo todos os documentos padrão herdados, para o site padrão. O código fará com que o seguinte XML seja adicionado à seção <system.webServer>
do arquivo Web.config para o site padrão:
<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 | Descrição |
---|---|
Cliente | – IIS 7.0 no Windows Vista – IIS 7.5 no Windows 7 – IIS 8.0 no Windows 8 – IIS 10.0 no Windows 10 |
Servidor | – IIS 7.0 no Windows Server 2008 – IIS 7.5 no Windows Server 2008 R2 – IIS 8.0 no Windows Server 2012 – IIS 8.5 no Windows Server 2012 R2 – IIS 10.0 no Windows Server 2016 |
Product | – IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0 |
Arquivo MOF | WebAdministration.mof |
Confira também
Classe ConfigurationSectionWithCollection
Classe DefaultDocumentSection
Classe FileSettings