using System; namespace umbraco.interfaces { /// /// The IcacheRefresher Interface is used for loadbalancing. /// /// public interface ICacheRefresher { Guid UniqueIdentifier { get;} string Name { get;} void RefreshAll(); void Refresh(int Id); void Remove(int Id); void Refresh(Guid Id); } }