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