Class LocalizationResourceDefinition
- Namespace
- CMS.Localization
- Assembly
- CMS.Globalization.dll
Class defines a localization resource.
public sealed class LocalizationResourceDefinition
- Inheritance
-
objectLocalizationResourceDefinition
- Extension Methods
Constructors
LocalizationResourceDefinition(string, Type, object)
Initializes a new instance of a LocalizationResourceDefinition.
public LocalizationResourceDefinition(string cultureCode, Type resourceType, object customData = null)
Parameters
cultureCode
stringCulture code for which the
resourceType
is being used by localization.resourceType
TypeDefines type wrapping the '.resx' file used for localization and serves as a access point to the file.
customData
objectDefines custom data which describe the way the registered resource is to be used. Used for modularization and customization scenarios.
Properties
CultureCode
Culture code for which the ResourceType is being used by localization.
public string CultureCode { get; }
Property Value
- string
CustomData
Defines custom data which describe the way the registered resource is to be used. Used for modularization and customization scenarios.
public object CustomData { get; }
Property Value
- object
Remarks
If null
then resource is to be used only by the server-side localization ResHelper.
Used to determine whether resource strings are supplied to the client-side application
by checking for the not null
reference of this property.
ResourceType
Defines type wrapping the '.resx' file used for localization and serves as a access point to the file.
public Type ResourceType { get; }
Property Value
- Type