SimpleInjectorAspNetCoreIntegrationExtensionsAutoCrossWireAspNetComponents Method (Container, IServiceProvider)

Simple Injector

Note: This API is now obsolete.

Allows registrations made using the IServiceCollection API to be resolved by Simple Injector.

Namespace:  SimpleInjector
Assembly:  SimpleInjector.Integration.AspNetCore (in SimpleInjector.Integration.AspNetCore.dll) Version: 4.10.3
Syntax

[ObsoleteAttribute("Please call services.AddSimpleInjector() instead. AddSimpleInjector can be called from within the ConfigureServices method of the Startup class. It ensures auto cross wiring is enabled. See https://simpleinjector.org/aspnetcore for more information. Will be removed in version 5.0.", 
	true)]
public static void AutoCrossWireAspNetComponents(
	this Container container,
	IServiceProvider appServices
)

Parameters

container
Type: SimpleInjectorContainer
The container.
appServices
Type: SystemIServiceProvider
The IServiceProvider instance that provides the set of singleton services.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Container. 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).
See Also

Reference