Controller.IActionFilter.OnActionExecuting Method
This API supports the MVC infrastructure and is not intended to be used directly from your code. This method calls the OnActionExecuting method.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Private Sub OnActionExecuting ( _
filterContext As ActionExecutingContext _
) Implements IActionFilter.OnActionExecuting
void IActionFilter.OnActionExecuting(
ActionExecutingContext filterContext
)
private:
virtual void OnActionExecuting(
ActionExecutingContext^ filterContext
) sealed = IActionFilter::OnActionExecuting
Parameters
- filterContext
Type: System.Web.Mvc.ActionExecutingContext
The filter context.
Implements
IActionFilter.OnActionExecuting(ActionExecutingContext)
Remarks
This member is an explicit interface member implementation. It can be used only when a derived Controller instance is cast to an IActionFilter interface.