Skip to content

Instantly share code, notes, and snippets.

@NicoVermeir
Created February 29, 2016 09:44
Show Gist options
  • Save NicoVermeir/a9bfd00d1fc70423f5cf to your computer and use it in GitHub Desktop.
Save NicoVermeir/a9bfd00d1fc70423f5cf to your computer and use it in GitHub Desktop.
public static HttpClient GetClientInstance()
{
if (_client == null)
{
var handler = new HttpClientHandler();
if (handler.SupportsAutomaticDecompression)
{
handler.AutomaticDecompression = DecompressionMethods.GZip |
DecompressionMethods.Deflate;
}
_client = new HttpClient(handler)
{
BaseAddress = new Uri(Constants.ApiBaseUrl)
};
}
return _client;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment