Reputation: 561
could someone help to explain the difference between OnAuthorization and OnActionExecuting in asp.net mvc?
Upvotes: 4
Views: 2054
Reputation: 13934
OnAuthorization
gets called when authorization occurs and OnActionExecuting
gets called before the action method is invoked. Authorization will occure before action execution. This gives you chance to check if user is authorized to execute that action.
Upvotes: 6