Condividi tramite


WebAuditEvent.RequestInformation Proprietà

Definizione

Ottiene 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à

WebRequestInformation

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

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

Si applica a

Vedi anche