//Get instance of cache
using System.Runtime.Caching;
var cache = MemoryCache.Default;
//Check if cache contains an item with
cache.Contains("CacheKey");
//get item from cache
var item = cache.Get("CacheKey");
//get item from cache or add item if not existing
obje...