SimpleInjectorServiceCollectionExtensionsUseLocalization Method

Simple Injector

Note: This API is now obsolete.

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: 4.10.3
Syntax

[ObsoleteAttribute("Please call services.AddSimpleInjector(options => { options.AddLocalization(); } instead on the IServiceCollection instance. For more information, see: https://simpleinjector.org/servicecollection. Will be removed in version 5.0.", 
	true)]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static SimpleInjectorUseOptions UseLocalization(
	this SimpleInjectorUseOptions options
)

Parameters

options
Type: SimpleInjectorSimpleInjectorUseOptions
The options.

Return Value

Type: SimpleInjectorUseOptions
The supplied options.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SimpleInjectorUseOptions. 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
ArgumentNullException Thrown when options is a null reference.
InvalidOperationExceptionThrown when no IStringLocalizerFactory entry can be found in the framework's list of services defined by IServiceCollection.
ActivationExceptionThrown when an IStringLocalizer is directly resolved from the container. Instead use IStringLocalizer within a constructor dependency.
See Also

Reference