SimpleInjectorServiceCollectionExtensionsUseSimpleInjector Method (IServiceProvider, Container)

Simple Injector
Finalizes the configuration of Simple Injector on top of IServiceCollection. Will ensure framework components can be injected into Simple Injector-resolved components, unless AutoCrossWireFrameworkComponents is set to false.

Namespace:  SimpleInjector
Assembly:  SimpleInjector.Integration.ServiceCollection (in SimpleInjector.Integration.ServiceCollection.dll) Version: 5.0.0
Syntax

public static IServiceProvider UseSimpleInjector(
	this IServiceProvider provider,
	Container container
)

Parameters

provider
Type: SystemIServiceProvider
The application's IServiceProvider.
container
Type: SimpleInjectorContainer
The application's Container instance.

Return Value

Type: IServiceProvider
The supplied provider.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IServiceProvider. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions

ExceptionCondition
ArgumentNullExceptionThrown when provider or container are null references.
See Also

Reference