示例#1
0
        public static void ClearKey(string id)
        {
            // Clear a single object by key.
            string cacheKey = MakeKey(id);

            CacheData.ClearKey(cacheKey);
        }
示例#2
0
 public static void ClearSingleton()
 {
     CacheData.ClearKey(typeof(T).Name);
 }