Classe TraceFailedRequestsSection
Representa uma seção de configuração de rastreamento de solicitação com falha.
Sintaxe
class TraceFailedRequestsSection : ConfigurationSectionWithCollection
Métodos
A tabela a seguir lista os métodos expostos pela classe TraceFailedRequestsSection
.
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 TraceFailedRequestsSection
.
Nome | Descrição |
---|---|
Location |
(Herdado de ConfigurationSection .) Uma propriedade chave. |
Path |
(Herdado de ConfigurationSection .) Uma propriedade chave. |
SectionInformation |
(Herdado de ConfigurationSection .) |
TraceFailedRequests |
Uma matriz de leitura/gravação de valores TraceUrl que configura o rastreamento para tipos de solicitação específicos (por exemplo, *.aspx). |
Subclasses
Essa classe não contém subclasses.
Comentários
Essa classe corresponde à seção <traceFailedRequests>
em ApplicationHost.config.
Exemplo
O exemplo a seguir lista as propriedades Location
, Path
e TraceFailedRequest
do 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'")
' Place the TraceFailedRequestsSection object into a variable by
' using the GetSection method on the Site object.
oSite.GetSection "TraceFailedRequestsSection", oTFRSection
' Echo the path and location information.
WScript.Echo "Path: " & oTFRSection.Path
WScript.Echo "Location: " & oTFRSection.Location
WScript.Echo vbCRLF
' Retrieve and display the values for the TraceFailedRequests property.
For Each oTFR In oTFRSection.TraceFailedRequests
WScript.Echo "Trace URL path: " & oTFR.Path
WScript.Echo String(16 + Len(oTFR.Path), "=")
Set oFD = oTFR.FailureDefinitions
WScript.Echo "Failure Definition Status Codes: " & oFD.StatusCodes
WScript.Echo "Failure Definition TimeTaken: " & oFD.TimeTaken
WScript.Echo "Failure Definition Verbosity Level: " & _
GetVerbosityText(oFD.Verbosity)
WScript.Echo
For Each oTA In oTFR.TraceAreas.TraceAreas
WScript.Echo "Trace Provider: " & oTA.Provider
WScript.Echo "Trace Verbosity Level: " & _
GetVerbosityText(oTA.Verbosity)
If Not (oTA.Provider = "ASP" Or _
oTA.Provider = "ISAPI Extension") Then
WScript.Echo "Trace Areas: " & oTA.Areas
End If
WScript.Echo
Next
WScript.Echo
Next
' Provide text for the verbosity enumeration values.
Function GetVerbosityText(sint32Value)
Select Case sint32Value
Case 0
GetVerbosityText="General"
Case 1
GetVerbosityText="Critical Error"
Case 2
GetVerbosityText="Error"
Case 3
GetVerbosityText="Warning"
Case 4
GetVerbosityText="Information"
Case 5
GetVerbosityText="Verbose"
Case Else
GetVerbosityText ="Undefined Verbosity Level"
End Select
End Function
Hierarquia de herança
ConfigurationSectionWithCollection
TraceFailedRequestsSection
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 HttpTracingSection
Classe TraceAreaElement
Classe TraceAreaDefinition
Classe TraceProviderDefinition
Classe TraceProviderDefinitionsSection
Classe TraceUrl
Classe TraceUrlAreaSettings
Criar uma Regra de Rastreamento para Solicitações com Falha