using System.Collections.Generic; namespace Umbraco.Core.Cache { public interface IRequestCache : IAppCache, IEnumerable> { bool Set(string key, object value); bool Remove(string key); /// /// Returns true if the request cache is available otherwise false /// bool IsAvailable { get; } } }