コード例 #1
0
ファイル: CacheKey.cs プロジェクト: rducom/StackCache
 public CacheKey(Key tenant, Key region, Key suffix)
     : this()
 {
     this._prefix = new KeyPrefix(tenant, region);
     this._suffix = suffix;
     this.ExpirationMode = ExpirationMode.None;
 }
コード例 #2
0
ファイル: CacheKey.cs プロジェクト: rducom/StackCache
 public CacheKey(KeyPrefix prefix, Key suffix)
     : this()
 {
     this._prefix = prefix;
     this._suffix = suffix;
     this.ExpirationMode = ExpirationMode.None;
 }