This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[InitializableModule] | |
[ModuleDependency(typeof(ServiceContainerInitialization))] // used to override default provider | |
public class CustomProviderBasedLocalizationService : ProviderBasedLocalizationService, IConfigurableModule | |
{ | |
private static LocalizationService _localizationService; | |
public CustomProviderBasedLocalizationService() : this(null) { } | |
public CustomProviderBasedLocalizationService(ResourceKeyHandler keyHandler) : base(keyHandler) { } |