Classe HttpTracingSection
Representa uma seção de configuração de rastreamento HTTP.
Sintaxe
class HttpTracingSection : ConfigurationSectionWithCollection
Métodos
A tabela a seguir lista os métodos expostos pela classe HttpTracingSection
.
Nome | Descrição |
---|---|
Add | (Herdado de ConfigurationSectionWithCollection.) |
Limpar | (Herdado de ConfigurationSectionWithCollection .) |
Get | (Herdado de ConfigurationSectionWithCollection .) |
GetAllowDefinition | (Herdado de ConfigurationSection.) |
GetAllowLocation | (Herdado de ConfigurationSection .) |
Remover | (Herdado de ConfigurationSectionWithCollection .) |
RevertToParent | (Herdado de ConfigurationSection .) |
SetAllowDefinition | (Herdado de ConfigurationSection .) |
SetAllowLocation | (Herdado de ConfigurationSection .) |
Propriedades
A tabela a seguir lista as propriedades expostas pela classe HttpTracingSection
.
Nome | Descrição |
---|---|
TraceUrls |
Um valor TraceUrlSettings que especifica o rastreamento para tipos específicos de solicitações. |
Location |
(Herdado de ConfigurationSection .) Uma propriedade chave. |
Path |
(Herdado de ConfigurationSection .) Uma propriedade chave. |
SectionInformation |
(Herdado de ConfigurationSection .) |
Subclasses
Essa classe não contém subclasses.
Comentários
Essa classe corresponde à seção <httpTracing>
em ApplicationHost.config e é usada para rastreamento baseado em solicitação ETW (Rastreamento de Eventos para Windows).
Exemplo
O exemplo de código a seguir exibe o conteúdo da propriedade TraceUrls
.
' Connect to the WMI WebAdministration namespace.
Set oWebAdmin = GetObject( _
"winmgmts:root\WebAdministration")
' Get the HTTP tracing section.
Set oSection = oWebAdmin.Get( _
"HttpTracingSection.Path=" & _
"'MACHINE/WEBROOT/APPHOST',Location=''")
' Display the class name of the section.
WScript.Echo "[ " & oSection.Path_.Class & " ]"
' Display the path.
WScript.Echo "Path: " & oSection.Path
' Display the trace url values.
For Each strElement In oSection.TraceUrls.TraceUrls
WScript.Echo strElement.Value
Next
Hierarquia de herança
ConfigurationSectionWithCollection
HttpTracingSection
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
Criar uma Regra de Rastreamento para Solicitações com Falha
Classe CollectionElement
Classe ConfigurationSectionWithCollection
Classe FailureDefinition
Classe TraceAreaElement
Classe TraceAreaDefinition
Classe TraceFailedRequestsSection
Classe TraceProviderDefinition
Classe TraceProviderDefinitionsSection
Classe TraceUrl
Classe TraceUrlSettings