If it does, why can't I override it in my code?
protected override bool OnPreAction(string actionName, System.Reflection.MethodInfo methodInfo)
{
//do stuff
return base.OnPreAction(actionName, methodInfo);
}
The posted code is in a Controller wich extends from Controller class. When I compile I get this error:
'Namespace.Controllers.XXController.OnPreAction(string, System.Reflection.MethodInfo)': no suitable method found to override
If the method doesn't exist, is there anyone which replace it?
If it does exist, whats the problem in my code?
Please help!
Thanks