WebAuditEvent.RequestInformation Свойство

Определение

Получает сведения, связанные с веб-запросом.

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

Значение свойства

WebRequestInformation

WebRequestInformation, содержащий сведения, связанные с веб-запросом.

Примеры

В следующем примере кода показано, как получить сведения о запросе WebRequestInformation с помощью свойства.

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

Комментарии

Используйте сведения, предоставленные свойством RequestInformation , чтобы помочь в обнаружении причин сбоя.

Применяется к

См. также раздел