Skip to content

Instantly share code, notes, and snippets.

View casper-rasmussen's full-sized avatar

Casper Aagaard Rasmussen casper-rasmussen

View GitHub Profile
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)