コード例 #1
0
 public Task <Response> Search(int page, string text, Box box = null)
 {
     return(_cache.GetAsync(
                $"search|{page}|{text}|{box?.ToBbox()}",
                () => _provider.Search(page, text, box)));
 }