The order of the filters that get executed, if the multiple filters are implemented?
Answer Posted / Amit Pandit
In ASP.NET MVC, filters are executed in the following order:n1. Authorization filters (before action execution)n2. Action filters (before action execution)n3. Result filters (after action execution, before returning the result to the client)n4. Exception filters (if an exception occurs during action execution)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers