using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Neo.Afx.Common
{
///
/// Disabled cachecontext provider to be used for local development purposes
///
public class CacheContextDisabled : ICacheContext
{
///
/// Get the cached value based on a specified key
///
///
///
///
public T Get(string key)
{
return default(T);
}
///
/// Set the cached value
///
///
///
///
public void Set(string key, object value, int cacheDurationMinutes)
{
}
///
/// Remove a cached value
///
///
public void Remove(string key)
{
}
///
/// Clear the cache
///
public void Clear()
{
}
}
}