IDependencyResolver Interface
Represents a dependency injection container.
Namespace: System.Web.Http.Dependencies
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
Public Interface IDependencyResolver _
Inherits IDependencyScope, IDisposable
'Usage
Dim instance As IDependencyResolver
public interface IDependencyResolver : IDependencyScope,
IDisposable
public interface class IDependencyResolver : IDependencyScope,
IDisposable
type IDependencyResolver =
interface
interface IDependencyScope
interface IDisposable
end
public interface IDependencyResolver extends IDependencyScope, IDisposable
The IDependencyResolver type exposes the following members.
Methods
Name | Description | |
---|---|---|
BeginScope | Starts a resolution scope. | |
Dispose | (Inherited from IDisposable.) | |
GetService | Retrieves a service from the scope. (Inherited from IDependencyScope.) | |
GetServices | Retrieves a collection of services from the scope. (Inherited from IDependencyScope.) |
Top