Allows components that are built by Simple Injector to depend on the (non-generic)
Microsoft.Extensions.Localization.IStringLocalizer abstraction.
Components are injected with an contextual implementation. Using this method, application
components can simply depend on IStringLocalizer instead of its generic counter part,
IStringLocalizer<T>, which simplifies development.
Namespace: SimpleInjector
Assembly: SimpleInjector.Integration.ServiceCollection (in SimpleInjector.Integration.ServiceCollection.dll) Version: 5.0.0
Syntax
public static SimpleInjectorAddOptions AddLocalization( this SimpleInjectorAddOptions options )
Parameters
- options
- Type: SimpleInjector.Integration.ServiceCollectionSimpleInjectorAddOptions
The options.
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 options is a null reference. |
InvalidOperationException | Thrown when no IStringLocalizerFactory entry can be found in the framework's list of services defined by IServiceCollection. |
ActivationException | Thrown when an IStringLocalizer is directly resolved from the container. Instead use IStringLocalizer within a constructor dependency. |
See Also