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