Ejemplo n.º 1
0
 public static string Get(IEnumerable <string> keys, string defaultValue)
 {
     foreach (var key in keys)
     {
         if (Cache.Is(key, defaultValue))
         {
             return(Cache.Get(key, defaultValue));
         }
     }
     return(defaultValue);
 }
Ejemplo n.º 2
0
 public static string Get(string key, string defaultValue)
 {
     return(Cache.Get(key, defaultValue));
 }