using Umbraco.Core.Cache; namespace Umbraco.Core { /// /// Extension methods for the cache helper /// public static class CacheHelperExtensions { public const string PartialViewCacheKey = "Umbraco.Web.PartialViewCacheKey"; /// /// Clears the cache for partial views /// /// public static void ClearPartialViewCache(this AppCaches appCaches) { appCaches.RuntimeCache.ClearByKey(PartialViewCacheKey); } } }