This file contains hidden or 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
class EPiServerAwareKeyBuilder : IKeyBuilder | |
{ | |
private readonly IKeyBuilder _keyBuilder = new KeyBuilder(); | |
public string BuildKey(string controllerName) | |
{ | |
return this._keyBuilder.BuildKey(controllerName); | |
} | |
public string BuildKey(string controllerName, string actionName) |
NewerOlder