Renamed Umbraco.Abstractions to Umbraco.Core
This commit is contained in:
14
src/Umbraco.Core/Cache/IJsonCacheRefresher.cs
Normal file
14
src/Umbraco.Core/Cache/IJsonCacheRefresher.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user