LocalizationService
The LocalizationService acts as a "gateway" to Umbraco data for operations which are related to Dictionary items and Languages.
Browse the API documentation for ILocalizationService.
Namespace:
Umbraco.Cms.Core.Services
Assembly:
Umbraco.Core.dll
All samples in this document will require references to the following dll:
Umbraco.Core.dll
All samples in this document will require the following using statements:
For Razor views:
Getting the service
Dependency Injection
If you wish to use the localization service in a class, you need to specify the ILocalizationService
interface in your constructor:
In Razor views, you can access the localization service through the @inject
directive:
Samples
Retrieving languages See examples on how to retrieve languages via the localization service - either individually or as a collection.
Last updated