Exemplo n.º 1
0
 public override void Add(string key, object value, string fileName, double cacheMinutes, CacheItemPriority level)
 {
     client.Set(key, value, Convert.ToInt32(cacheMinutes * 60));
 }
Exemplo n.º 2
0
 public override void Set(string key, object value, double cacheMinutes, string fileName)
 {
     client.Set(key, value, Convert.ToInt32(cacheMinutes * 60));
 }