Share via


ExceptionContext.ActionContext Property

 

Gets the action context in which the exception occurred, if available.

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

Syntax

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

Property Value

Type: System.Web.Http.Controllers.HttpActionContext

The action context in which the exception occurred, if available.

See Also

ExceptionContext Class
System.Web.Http.ExceptionHandling Namespace

Return to top