コード例 #1
0
        private static async Task <string> GetBatchAsync(IWebApi webApi, string resourcePath, int skip, int take)
        {
            resourcePath +=
                "&skip=" + skip.ToString()
                + "&take=" + take.ToString();

            // Call GetJsonAsync
            return(await webApi.GetJsonAsync(resourcePath));
        }