예제 #1
0
파일: DbCache.cs 프로젝트: e23z/estellaris
 public Task <byte[]> GetAsync(string key)
 {
     RemoveExpiredItems();
     return(_cacheRepository.FindByKeyAsync(key).ContinueWith(_ => _.Result.Value));
 }