aspnetcore/src
Ryan Nowak e1069dbf65 Fix for #384 - And some other changes to controller as filter
This is a major change to how we handle the scenario where a controller is
a filter. We want to change the lifetime of the controller object, by
scoping it around action filters and result filters. This means that a
controller class can only implement action filters and result filters.

To implement #384 - we're creating a delegating filter class
'ControllerFilter' which will forward calls to the implementation of the
controller. This is discovered in the controller model and added to the
filter collection. This filter is removable as an opt-out of this feature.

The ControllerFilter only implements action filter and result filter, so
the new restriction about filter types on Controller is in place. A future
change will move the instantiation of the controller to after resource
filters.
2015-01-16 19:17:39 -08:00
..
Microsoft.AspNet.Mvc Introducing 'cache' tag helper 2015-01-16 16:57:33 -08:00
Microsoft.AspNet.Mvc.Common
Microsoft.AspNet.Mvc.Core Fix for #384 - And some other changes to controller as filter 2015-01-16 19:17:39 -08:00
Microsoft.AspNet.Mvc.ModelBinding Fix for #1722 - FromHeader does not respect default value 2015-01-16 17:59:00 -08:00
Microsoft.AspNet.Mvc.Razor
Microsoft.AspNet.Mvc.Razor.Host
Microsoft.AspNet.Mvc.TagHelpers Introducing 'cache' tag helper 2015-01-16 16:57:33 -08:00
Microsoft.AspNet.Mvc.WebApiCompatShim Some cleanup of ActionResults - #657 2015-01-16 17:29:56 -08:00
PrecompilationWebSite