using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Caching;
namespace Umbraco.Core.Cache
{
///
/// Implements and do not cache.
///
public class NoAppCache : IAppPolicyCache
{
private NoAppCache() { }
///
/// Gets the singleton instance.
///
public static NoAppCache Instance { get; } = new NoAppCache();
///
public virtual object Get(string cacheKey)
{
return null;
}
///
public virtual object Get(string cacheKey, Func