Share via


DependencyResolverExtensions Class

Provides a type-safe implementation of GetService and GetServices.

Inheritance Hierarchy

System.Object
  System.Web.Mvc.DependencyResolverExtensions

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public NotInheritable Class DependencyResolverExtensions
'Usage
You do not need to declare an instance of a static class in order to access its members.
public static class DependencyResolverExtensions
[ExtensionAttribute]
public ref class DependencyResolverExtensions abstract sealed
public final class DependencyResolverExtensions

The DependencyResolverExtensions type exposes the following members.

Methods

  Name Description
Public methodStatic member GetService<TService> Resolves singly registered services that support arbitrary object creation.
Public methodStatic member GetServices<TService> Resolves multiply registered services.

Top

Remarks

The methods defined in this type provide a simplified, type-safe implementation of IDependencyResolver. These extension methods provide an early-bound and strongly-typed generic implementation of GetService and GetServices(Type) that avoids casting.

For more information about DependencyResolverExtensions, see the entry ASP.NET MVC 3 Service Location on Brad Wilson's blog.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Web.Mvc Namespace