Class ResourceKeyNormalizedEventArgs
Provides the data for the Resource
Inheritance
System.Object
ResourceKeyNormalizedEventArgs
Namespace: EPiServer.Framework.Localization
Assembly: EPiServer.Framework.dll
Version: 12.0.3Syntax
public sealed class ResourceKeyNormalizedEventArgs : EventArgs
Constructors
ResourceKeyNormalizedEventArgs(String[], String)
Initializes a new instance of the Resource
Declaration
public ResourceKeyNormalizedEventArgs(string[] normalizedKey, string originalKey)
Parameters
Type | Name | Description |
---|---|---|
System. |
normalizedKey | The normalized key array. |
System. |
originalKey | The original key. |
Properties
NormalizedKey
Gets or sets the normalized key. Any changes to this property will be propagated to the Localization
Declaration
public string[] NormalizedKey { get; set; }
Property Value
Type | Description |
---|---|
System. |
The normalized key array. |
Remarks
If you modifies the contents of this property, you must ensure that the array is not null and that all included keys are lower-cased.
OriginalKey
Gets the original resource key.
Declaration
public string OriginalKey { get; }
Property Value
Type | Description |
---|---|
System. |