1 out of 3 rated this helpful - Rate this topic

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)
public interface IDependencyResolver

The IDependencyResolver type exposes the following members.

  Name Description
Public method GetService Resolves singly registered services that support arbitrary object creation.
Public method GetServices Resolves multiply registered services.
Top
  Name Description
Public Extension Method GetService<TService> Resolves singly registered services that support arbitrary object creation. (Defined by DependencyResolverExtensions.)
Public Extension Method GetServices<TService> Resolves multiply registered services. (Defined by DependencyResolverExtensions.)
Top

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 null 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.

Did you find this helpful?
(1500 characters remaining)