Files
Umbraco-CMS/src/Umbraco.Core/Cache/IJsonCacheRefresher.cs
T
2018-06-29 19:52:40 +02:00

15 lines
451 B
C#

namespace Umbraco.Core.Cache
{
/// <summary>
/// A cache refresher that supports refreshing or removing cache based on a custom Json payload
/// </summary>
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);
}
}