user192415
user192415

Reputation: 561

asp.net mvc difference between OnAuthorization and OnActionExecuting

could someone help to explain the difference between OnAuthorization and OnActionExecuting in asp.net mvc?

Upvotes: 4

Views: 2054

Answers (1)

frennky
frennky

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

Related Questions