Reputation: 8186
I suppose I could look through the whole MVC3 source and try and find them all, but is there a list somewhere detailing all the Interfaces that MVC3 attempts to resolve automatically using the DependencyResolver?
So far I only have IControllerFactory
which I'm using to find Controllers using MEF. What other useful services are discovered?
Upvotes: 0
Views: 82
Reputation: 53183
Brad Wilson who implemented the DI feature has an entire blog series about all the services that are retrieved through DependencyResolver in ASP.NET MVC 3.
Upvotes: 1