IDependencyResolver Interface
Defines the methods that simplify service location and dependency resolution.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
The IDependencyResolver type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | GetService | Resolves singly registered services that support arbitrary object creation. |
![]() | GetServices | Resolves multiply registered services. |
| Name | Description | |
|---|---|---|
![]() | GetService<TService> | Resolves singly registered services that support arbitrary object creation. (Defined by DependencyResolverExtensions.) |
![]() | GetServices<TService> | Resolves multiply registered services. (Defined by DependencyResolverExtensions.) |
Implementations of this interface should delegate to the underlying dependency injection container to provide the registered service for the requested type. When there are no registered services of the requested type, the ASP.NET MVC framework expects implementations of this interface to return nullptr from GetService and to return an empty collection from GetServices.
For more information about IDependencyResolver, see the entry ASP.NET MVC 3 Service Location on Brad Wilson's blog.
Show:
.gif?cs-save-lang=1&cs-lang=cpp)
.gif?cs-save-lang=1&cs-lang=cpp)