public virtual bool TrySetValue(TKey key, TValue value) { var newVal = new CacheValue <TValue>(value, _expireTime); return(base.TrySetValue(key, newVal)); }
protected new bool TryGetValue(TKey key, out CacheValue <TValue> value) { return(base.TryGetValue(key, out value)); }
protected new bool TrySetValue(TKey key, CacheValue <TValue> value) { return(base.TrySetValue(key, value)); }