Share via


ExceptionContext.Request Property

 

Gets the request being processed when the exception was caught.

Namespace:   System.Web.Http.ExceptionHandling
Assembly:  System.Web.Http (in System.Web.Http.dll)

Syntax

public HttpRequestMessage Request {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
property HttpRequestMessage^ Request {
    [CompilerGeneratedAttribute]
    HttpRequestMessage^ get();
    [CompilerGeneratedAttribute]
    void set(HttpRequestMessage^ value);
}
member Request : HttpRequestMessage with get, set
Public Property Request As HttpRequestMessage

Property Value

Type: System.Net.Http.HttpRequestMessage

The request being processed when the exception was caught.

See Also

ExceptionContext Class
System.Web.Http.ExceptionHandling Namespace

Return to top