Tim
Tim

Reputation: 8186

Which Interfaces/Services does ASP MVC3 attempt to resolve automatically using DependencyResolver?

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 IControllerFactorywhich I'm using to find Controllers using MEF. What other useful services are discovered?

Upvotes: 0

Views: 82

Answers (1)

marcind
marcind

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

Related Questions