Ejemplo n.º 1
0
 public CacheKey(Key tenant, Key region, Key suffix)
     : this()
 {
     this._prefix = new KeyPrefix(tenant, region);
     this._suffix = suffix;
     this.ExpirationMode = ExpirationMode.None;
 }
Ejemplo n.º 2
0
 public CacheKey(KeyPrefix prefix, Key suffix)
     : this()
 {
     this._prefix = prefix;
     this._suffix = suffix;
     this.ExpirationMode = ExpirationMode.None;
 }