public static void RemoveFormViewComponentResult(this ICache cache, string code, string cultureCode) { cache.Remove(ICacheExtensions.GetFormViewComponentResultKey(code, cultureCode)); }
public static IViewComponentResult GetFormViewComponentResultWithDefaultValue(this ICache cache, string code, Func <IViewComponentResult> defaultValueFunc) { return(cache.GetWithDefaultValue( ICacheExtensions.GetFormViewComponentResultKey(code), defaultValueFunc )); }