Пример #1
0
 public CacheEntry(PersistenceCache cache, string key, object value)
     : this(cache, key)
 {
     this.Value = value;
 }
Пример #2
0
 public CacheEntry(PersistenceCache cache, string key)
 {
     this.Cache = cache;
     this.Key   = key;
 }