Exemplo n.º 1
0
        public static void ClearKey(string id)
        {
            // Clear a single object by key.
            string cacheKey = MakeKey(id);

            CacheData.ClearKey(cacheKey);
        }
Exemplo n.º 2
0
 public static void ClearSingleton()
 {
     CacheData.ClearKey(typeof(T).Name);
 }