ASP MVC3 尝试使用 DependencyResolver 自动解析哪些接口/服务?
我想我可以浏览整个 MVC3 源代码并尝试找到它们,但是是否有一个列表详细说明了 MVC3 尝试使用 DependencyResolver 自动解析的所有接口?
到目前为止,我只有 IControllerFactory
,我用它来查找使用 MEF 的控制器。还发现了哪些其他有用的服务?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现 DI 功能的 Brad Wilson 有一个完整的 博客系列,内容涉及通过 ASP.NET MVC 3 中的 DependencyResolver 检索的所有服务。
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.