namespace Umbraco.Cms.Core.Cache; /// /// A cache refresher that supports refreshing cache based on a custom payload /// public interface IPayloadCacheRefresher : IJsonCacheRefresher { /// /// Refreshes, clears, etc... any cache based on the information provided in the payload /// /// void Refresh(TPayload[] payloads); }