HttpActionExecutedContext Constructor (HttpActionContext, Exception)
Initializes a new instance of the HttpActionExecutedContext class.
Namespace: System.Web.Http.Filters
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
Public Sub New ( _
actionContext As HttpActionContext, _
exception As Exception _
)
'Usage
Dim actionContext As HttpActionContext
Dim exception As Exception
Dim instance As New HttpActionExecutedContext(actionContext, _
exception)
public HttpActionExecutedContext(
HttpActionContext actionContext,
Exception exception
)
public:
HttpActionExecutedContext(
HttpActionContext^ actionContext,
Exception^ exception
)
new :
actionContext:HttpActionContext *
exception:Exception -> HttpActionExecutedContext
public function HttpActionExecutedContext(
actionContext : HttpActionContext,
exception : Exception
)
Parameters
- actionContext
Type: System.Web.Http.Controllers.HttpActionContext
The action context.
- exception
Type: System.Exception
The exception.
See Also
Reference
HttpActionExecutedContext Class