Files
Umbraco-CMS/src/Umbraco.Core/Cache/IJsonCacheRefresher.cs

15 lines
462 B
C#
Raw Normal View History

namespace Umbraco.Cms.Core.Cache
2018-06-29 19:52:40 +02:00
{
/// <summary>
/// A cache refresher that supports refreshing or removing cache based on a custom Json payload
/// </summary>
2019-05-20 18:28:35 +02:00
public interface IJsonCacheRefresher : ICacheRefresher
2018-06-29 19:52:40 +02:00
{
/// <summary>
/// Refreshes, clears, etc... any cache based on the information provided in the json
/// </summary>
/// <param name="json"></param>
void Refresh(string json);
}
}