
 July 3, 2020 14:12 by 
 Peter
 PeterAction  filter in MVC provides the option to handle the situations after we  would really like to perform an operation before and after the execution  of a controller action. For this purpose, we create a custom class,  which inherits the FilterAttribute class and implements the  IActionFilter interface. when creating the filter, we simply apply the  class name as an attribute on the controller.

Here,  the FilterAttribute class makes it possible to use the class as an  attribute and IActionFilter interface contains two methods named  OnActionExecuting and OnActionExecuted. The OnActionExecuting is  executed before the controller method is executed and OnActionExecuted  is called after the execution of the controller method. This kind of  technique is quite helpful for the logging purposes. Thus, let's see how  we can use this filter.
 
Let's start by adding a new class named  MyActionFilter.cs. Now, derive this class from the FilterAttribute and  the IActionFilter. Implement the  OnActionExecuting and OnActionExecuted  methods and add your custom logic into the methods.Thus, the code will  look as shown below.  
    public class MyActionFilter : FilterAttribute, IActionFilter  
    {  
        public void OnActionExecuted(ActionExecutedContext filterContext)  
        {  
            //Fires after the method is executed  
        }  
      
        public void OnActionExecuting(ActionExecutingContext filterContext)  
        {  
            //Fires before the action is executed  
        }  
    }  
Simply, apply the class as an attribute on the controller. Add debuggers on both the methods as well as the controller method. 
    public class HomeController : Controller  
    {  
        [MyActionFilter]  
        public ActionResult Index()  
        {  
            return View();  
        }  
      
        public ActionResult About()  
        {  
            ViewBag.Message = "Your application description page.";  
            return View();  
        }  
      
        public ActionResult Contact()  
        {  
            ViewBag.Message = "Your contact page.";  
            return View();  
        }  
    }  
Run  the Application and debug step by step to see the order of execution of  the methods. First, the OnActionExecuting will be executed, then the  controller method and finally the OnActionExecuted method. 
HostForLIFE.eu ASP.NET MVC 6 Hosting
HostForLIFE.eu            is European Windows Hosting Provider which focuses on Windows          Platform   only. We deliver on-demand hosting solutions  including     Shared     hosting,   Reseller Hosting, Cloud Hosting,  Dedicated     Servers, and  IT    as a  Service  for companies of all  sizes. We have     customers from    around  the  globe,  spread across  every continent.   We   serve the  hosting   needs  of the   business  and professional,     government and  nonprofit,    entertainment and    personal use market     segments.
