Files
Umbraco-CMS/src/Umbraco.Core/Cache/IJsonCacheRefresher.cs
2020-02-24 08:21:53 +01:00

15 lines
458 B
C#

namespace Umbraco.Core.Cache
{
/// <summary>
/// A cache refresher that supports refreshing or removing cache based on a custom Json payload
/// </summary>
public interface IJsonCacheRefresher : ICacheRefresher
{
/// <summary>
/// Refreshes, clears, etc... any cache based on the information provided in the json
/// </summary>
/// <param name="json"></param>
void Refresh(string json);
}
}