ASP.NET MVC Interim Released

Некоторое время назад я жаловался на реализацию паттерна Interception Filter в Asp Net Mvc. И вот вчера вышел очередной релиз это продукта.
Вот одно из изменений:
  • Action Filters now have four methods they can implement representing four possible interception points.
    • OnActionExecuting which occurs just before the action method is called.
    • OnActionExecuted which occurs after the action method is called, but before the result is executed (aka before the view is rendered in common scenarios).
    • OnResultExecuting which occurs just before the result is executed (aka before the view is rendered in common scenarios).
    • OnResultExecuted which occurs after the result is executed (aka after the view is rendered in common scenarios).

Комментариев нет: