Udostępnij za pośrednictwem


WebAuditEvent.RequestInformation Właściwość

Definicja

Pobierz informacje skojarzone z żądaniem internetowym.

public:
 property System::Web::Management::WebRequestInformation ^ RequestInformation { System::Web::Management::WebRequestInformation ^ get(); };
public System.Web.Management.WebRequestInformation RequestInformation { get; }
member this.RequestInformation : System.Web.Management.WebRequestInformation
Public ReadOnly Property RequestInformation As WebRequestInformation

Wartość właściwości

WebRequestInformation

Element WebRequestInformation zawierający informacje skojarzone z żądaniem sieci Web.

Przykłady

W poniższym przykładzie kodu pokazano, jak uzyskać informacje o żądaniu WebRequestInformation za pośrednictwem właściwości .

// Obtains the current thread information.
public WebRequestInformation GetRequestInformation()
{
    // Obtain the Web request information.
    // No customization is allowed here.
    return RequestInformation;
}
' Obtains the current thread information.
Public Function GetRequestInformation() As WebRequestInformation 
    ' Obtain the Web request information.
    ' No customization is allowed here.
    Return RequestInformation

End Function 'GetRequestInformation

Uwagi

Użyj informacji dostarczonych przez RequestInformation właściwość, aby ułatwić odnajdywanie przyczyn awarii.

Dotyczy

Zobacz też