Ruhrpottpatriot on ServiceClient
Remove superfluous compression … Add simple caching to Core proj… Move files into different folde… and 8 more (compare)
Ruhrpottpatriot on ServiceClient
Add fluent api to create HttpRe… Fix Stylecop errors Remove dead code and 3 more (compare)
Ruhrpottpatriot on NetCore2.0
Remove disabled and superseded … Delete unused leftover code fro… Move V1.Guild test to appropria… and 8 more (compare)
Ruhrpottpatriot on NetCore2.0
Update .gitignore to exclude St… Add Api builder class (compare)
Ruhrpottpatriot on master
Refactorize ServiceClient.GetHt… Merge pull request #57 from Kor… (compare)
public async Task<ICollectionPage<ColorPalette>> FindPageAsync(int pageIndex, CancellationToken cancellationToken)
{
UrlEncodedForm formData = new UrlEncodedForm
{
{ "lang", this.Culture.TwoLetterISOLanguageName },
{ "page", pageIndex.ToString() }
};
var request = new HttpRequestMessage(HttpMethod.Get, new Uri("v2/colors" + formData, UriKind.Relative));
var response = await this.httpClient.SendAsync(request, cancellationToken).ConfigureAwait(false);
return await this.pageResponseConverter.ConvertAsync(response, cancellationToken);
}