Start networking and exchanging professional insights

Register now or log in to join your professional community.

Follow

What are Filters in MVC?

user-image
Question added by Mohannad Bakbouk , Full Stack Web Developer , Almohtaseb
Date Posted: 2016/10/20
mohammed hussamuddin hussamuddin
by mohammed hussamuddin hussamuddin , C Technical Lead , Infosys

Authorization filter : Implements IAuthorization Attribute(Performing Authentication using Authorization Attribute,RequireHttpsAttribute)

Action Filters: Implements IActionResults Attribute(Action Method OnActionExecuting, OnActionExecuted for checking the canceling the requried action)

Result Filters: Implements IResultFilters Attribute(Modifiying Http Responses OutPutCacheAttribute)

Exception Filters:Implements IExceptionFilters Attribute(Error logging and displaying Error Message in Action Methods HandleErrorAttribute)

More Questions Like This