Exemplo n.º 1
0
 private CacheScope ConvertToLocalScope(CacheScopeOption scope)
 {
     return((CacheScope)(int)scope);
 }
Exemplo n.º 2
0
 public void Insert(string key, object value, string[] tags, TimeSpan timeout, CacheScopeOption scope)
 {
     CacheService.Put(key, value, ConvertToLocalScope(scope), tags ?? new string[0], timeout);
 }