// Copyright (c) Umbraco.
// See LICENSE for more details.
using Umbraco.Cms.Core.Cache;
namespace Umbraco.Extensions
{
///
/// Extension methods for the cache helper
///
public static class CoreCacheHelperExtensions
{
public const string PartialViewCacheKey = "Umbraco.Web.PartialViewCacheKey";
///
/// Clears the cache for partial views
///
///
public static void ClearPartialViewCache(this AppCaches appCaches)
{
appCaches.RuntimeCache.ClearByKey(PartialViewCacheKey);
}
}
}