public void AddItem(string cacheKey, CacheItem cacheItem)
 {
     lock (SyncRoot)
     {
         CachedItemDictionary.Add(cacheKey, cacheItem);
     }
 }
 private static bool HasCacheItemExpired(CacheItem cacheItem)
 {
     return cacheItem.Expiration < DateTime.Now;
 }