共用方式為


WebAuditEvent.RequestInformation 屬性

定義

取得與 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

屬性值

WebRequestInformation

WebRequestInformation,包含與 Web 要求相關的資訊。

範例

下列程式碼範例示範如何透過 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 ,協助探索發生問題的原因。

適用於

另請參閱