tags:

views:

826

answers:

1

Hi,

In preview 5 I was overriding the OnActionExecuting in my custom controller class, but now for some reason in beta it is giving me an error saying the parameter FilterExecutingContext doesn't exist?

     protected override void OnActionExecuting(System.Web.Mvc.FilterExecutingContext filterContext)

What is the parameter now?

+12  A: 

The parameter is now a System.Web.Mvc.ActionExecutingContext object.

Ty