Ejemplo n.º 1
0
 public override bool TryGetConfigValue(string key, out string value)
 {
     if (_cache != null)
     {
         if (_cache.TryGetCachedValue(key, out value))
         {
             return(true);
         }
     }
     if (!base.TryGetConfigValue(key, out value))
     {
         return(false);
     }
     _cache?.CacheInsert(key, value);
     return(true);
 }