private static string Get(string type, int offset, int count) { var query = new QueryContents(type, offset, count); var response = query.RequestAsString(); return(response); }
private async static Task <string> GetAsync(string type, int offset, int count) { var query = new QueryContents(type, offset, count); var response = await query.RequestAsStringAsync(); return(response); }