Cross wires an ASP.NET Core or third-party service to the container, to allow the service to be
injected into components that are built by Simple Injector.
Namespace: SimpleInjector
Assembly: SimpleInjector.Integration.ServiceCollection (in SimpleInjector.Integration.ServiceCollection.dll) Version: 5.0.0
Syntax
public static SimpleInjectorAddOptions CrossWire( this SimpleInjectorAddOptions options, Type serviceType )
Parameters
- options
- Type: SimpleInjector.Integration.ServiceCollectionSimpleInjectorAddOptions
The options. - serviceType
- Type: SystemType
The type of service object to ross-wire.
Return Value
Type: SimpleInjectorAddOptionsThe supplied options.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type SimpleInjectorAddOptions. 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
Exception | Condition |
---|---|
ArgumentNullException | Thrown when one of the parameters is a null reference. |
See Also