Class LocalizationSettings
- Namespace
- BlazOrbit.Localization
- Assembly
- BlazOrbit.Core.dll
Common host-side localization settings shared by the Server and WASM integrations.
Concrete packages derive their host-specific subclass - ServerLocalizationSettings
adds cookie configuration, WasmLocalizationSettings is a marker for symmetry -
so that consumers referencing both packages can disambiguate without using aliases.
public class LocalizationSettings
- Inheritance
-
objectLocalizationSettings
- Derived
Constructors
LocalizationSettings()
public LocalizationSettings()
Properties
DefaultCulture
Default UI culture applied when no host-side persistence (cookie / localStorage) has recorded a previous selection.
public string DefaultCulture { get; set; }
Property Value
- string
SupportedCultures
Cultures the host advertises as supported (for negotiation + the UI selector).
public List<CultureInfo> SupportedCultures { get; set; }
Property Value
- List<CultureInfo>