Custom ASP.NET MVC ActionFilterAttribute - hooks never get called

前端 未结 7 525
故里飘歌
故里飘歌 2021-01-01 18:50

Hi I`m trying to do something that seems kinda easy, and is documented that way but for some reason its not going that easy.

Basiclly I wrote something like this:

7条回答
  •  悲&欢浪女
    2021-01-01 19:23

    Have you tried overriding the OnActionExecuting like:

    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
         base.OnActionExecuting(filterContext);
    }
    

    This is the way I write action filters and haven't had a problem with them being called.

提交回复
热议问题