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