Exemplo n.º 1
0
 public CacheEntry(PersistenceCache cache, string key, object value)
     : this(cache, key)
 {
     this.Value = value;
 }
Exemplo n.º 2
0
 public CacheEntry(PersistenceCache cache, string key)
 {
     this.Cache = cache;
     this.Key   = key;
 }