示例#1
0
        public void RemoveAsync(string sessionId, string key)
        {
            Alachisoft.NCache.Web.Caching.Cache cache = null;
            object obj = null;

            GetCache(sessionId, key, out obj, "", "", out cache, false);
            if (cache != null)
            {
                cache.RemoveAsync(key, null, DSWriteOption.None, null);
            }
        }
示例#2
0
 public void RemoveAsync(string sessionId, string key)
 {
     _cache.RemoveAsync(key, null, DSWriteOption.None, null);
 }