Exemplo n.º 1
0
        private static string Get(string type, int offset, int count)
        {
            var query    = new QueryContents(type, offset, count);
            var response = query.RequestAsString();

            return(response);
        }
Exemplo n.º 2
0
        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);
        }