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