public byte[] Retrieve(string hash)
 {
     return(cacheAdapter.Get <byte[]>(BuildKey(hash)));
 }
Example #2
0
 public CachedValuesViewModel(IDotvvmCacheAdapter cacheAdapter)
 {
     this.cacheAdapter = cacheAdapter;
     Text = cacheAdapter.Get <string>(key);
 }