Condividi tramite


WebAuditEvent.RequestInformation Proprietà

Definizione

Ottenere le informazioni associate alla richiesta Web.

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

Valore della proprietà

Oggetto WebRequestInformation contenente le informazioni associate alla richiesta Web.

Esempio

Nell'esempio di codice seguente viene illustrato come ottenere informazioni sulla richiesta tramite la WebRequestInformation proprietà .

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

Commenti

Utilizzare le informazioni fornite dalla RequestInformation proprietà per facilitare l'individuazione delle cause di un malfunzionamento.

Si applica a

Vedi anche