Class ResourceKeyNormalizedEventArgs
Provides the data for the ResourceKeyNormalized event of the LocalizationService class.
Inheritance
System.Object
    System.EventArgs
    ResourceKeyNormalizedEventArgs
  Inherited Members
      System.EventArgs.Empty
    
    
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: EPiServer.Framework.Localization
Assembly: EPiServer.Framework.dll
Version: 10.10.4Syntax
public sealed class ResourceKeyNormalizedEventArgs : EventArgsConstructors
ResourceKeyNormalizedEventArgs(String[], String)
Initializes a new instance of the ResourceKeyNormalizedEventArgs class.
Declaration
public ResourceKeyNormalizedEventArgs(string[] normalizedKey, string originalKey)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String[] | normalizedKey | The normalized key array. | 
| System.String | originalKey | The original key. | 
Properties
NormalizedKey
Gets or sets the normalized key. Any changes to this property will be propagated to the LocalizationService.
Declaration
public string[] NormalizedKey { get; set; }Property Value
| Type | Description | 
|---|---|
| System.String[] | 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.String | 
