Freigeben über


HttpTracingSection-Klasse

Stellt einen Konfigurationsabschnitt für die HTTP-Ablaufverfolgung dar.

Syntax

class HttpTracingSection : ConfigurationSectionWithCollection  

Methoden

In der folgenden Tabelle werden die Methoden aufgelistet, die von der HttpTracingSectionKlasse verfügbar gemacht werden.

Name Beschreibung
Add (Hinzufügen) (Geerbt von ConfigurationSectionWithCollection.)
Clear (Geerbt von ConfigurationSectionWithCollection.)
Get (Geerbt von ConfigurationSectionWithCollection.)
GetAllowDefinition (Geerbt von ConfigurationSection.)
GetAllowLocation (Geerbt von ConfigurationSection.)
Remove (Geerbt von ConfigurationSectionWithCollection.)
RevertToParent (Geerbt von ConfigurationSection.)
SetAllowDefinition (Geerbt von ConfigurationSection.)
SetAllowLocation (Geerbt von ConfigurationSection.)

Eigenschaften

In der folgenden Tabelle sind die Eigenschaften aufgeführt, die von der HttpTracingSectionKlasse verfügbar gemacht werden.

Name Beschreibung
TraceUrls Ein TraceUrlSettings-Wert, der die Ablaufverfolgung für bestimmte Arten von Anforderungen angibt.
Location (Geerbt von ConfigurationSection.) Eine Schlüsseleigenschaft.
Path (Geerbt von ConfigurationSection.) Eine Schlüsseleigenschaft.
SectionInformation (Geerbt von ConfigurationSection.)

Unterklassen

Diese Klasse enthält keine Unterklassen.

Hinweise

Diese Klasse entspricht dem <httpTracing> Abschnitt in ApplicationHost.config und wird für die ereignisablaufverfolgung für Windows (ETW) anforderungsbasierte Ablaufverfolgung verwendet.

Beispiel

Im folgenden Codebeispiel wird der Inhalt der TraceUrls Eigenschaft angezeigt.

' 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  
  

Vererbungshierarchie

ConfigurationSection

ConfigurationSectionWithCollection

HttpTracingSection

Anforderungen

type Beschreibung
Client IIS 7.0 unter Windows Vista.
IIS 7.5 unter Windows 7
IIS 8.0 unter Windows 8
IIS 10.0 unter Windows 10
Server IIS 7.0 unter Windows Server 2008
- IIS 7.5 unter Windows Server 2008 R2
IIS 8.0 auf Windows Server 2012.
- IIS 8.5 unter Windows Server 2012 R2
IIS 10.0 auf Windows Server 2016.
Produkt - IIS 7.0, IIS 7.5, IIS 8.0, IIS 8.5, IIS 10.0
MOF-Datei WebAdministration.mof

Weitere Informationen

Erstellen einer Ablaufverfolgungsregel für fehlgeschlagene Anforderungen
CollectionElement-Klasse
ConfigurationSectionWithCollection-Klasse
FailureDefinition-Klasse
TraceAreaElement-Klasse
TraceAreaDefinition-Klasse
TraceFailedRequestsSection-Klasse
TraceProviderDefinition-Klasse
TraceProviderDefinitionsSection-Klasse
TraceUrl-Klasse
TraceUrl Einstellungen Klasse