SiteContainsConfigurationSection Class1
Fornece uma relação entre um site e suas seções de configuração.
Sintaxe
class SiteContainsConfigurationSection : ObjectConfigurationAssociation
Métodos
Essa classe não contém métodos.
Propriedades
A tabela a seguir lista as propriedades da classe SiteContainsConfigurationSection
.
Nome | Descrição |
---|---|
Container |
Um objeto Site somente leitura que representa um site do IIS. |
Element |
Um objeto ConfigurationSection somente leitura que expõe a seção de configuração de um site. |
Subclasses
Esta classe não tem subclasses.
Comentários
As associações retornam apenas instâncias do objeto que são definidas no nível dele. Por exemplo, se a seção <authentication>
for a única seção definida no arquivo Web.config no nível do site, somente a instância AuthenticationSection do objeto ConfigurationSection
será retornada.
Para obter todas as seções disponíveis, use o método GetAllSections da classe ConfiguredObject.
Exemplo
O exemplo a seguir lista todas as seções de configuração definidas no nível Web.config para o site padrão.
' 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'")
' List the configuration sections present in the Web.config file
' of the default Web site.
Set oSections = oSite.Associators_("SiteContainsConfigurationSection")
For Each oSection In oSections
WScript.Echo oSection.Path_.Class
Next
Hierarquia de herança
ObjectConfigurationAssociation
SiteContainsConfigurationSection
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
Método ConfiguredObject.GetAllSections
Classe ObjectConfigurationAssociation
Classe Site
Classe VirtualDirectoryContainsConfigurationSection