Sdílet prostřednictvím


WebAuditEvent.RequestInformation Vlastnost

Definice

Získejte informace přidružené k webové žádosti.

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

Hodnota vlastnosti

A WebRequestInformation , který obsahuje informace přidružené k webové žádosti.

Příklady

Následující příklad kódu ukazuje, jak získat informace o žádosti prostřednictvím WebRequestInformation vlastnosti.

// 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

Poznámky

Informace poskytnuté RequestInformation vlastností vám pomůžou zjistit příčiny selhání.

Platí pro

Viz také