Skip to content

Instantly share code, notes, and snippets.

@jamesmontemagno
Created March 7, 2014 02:13
Show Gist options
  • Save jamesmontemagno/9403761 to your computer and use it in GitHub Desktop.
Save jamesmontemagno/9403761 to your computer and use it in GitHub Desktop.
private IHttpClientHelper httpClientHelper;
public MyService()
{
this.httpClientHelper = ServiceContainer.Resolve<IHttpClientHelper>(); //does not exist on WP
}
private HttpClient CreateClient()
{
if(httpClientHelper == null)
return new HttpClient();
return new HttpClient(httpClientHelper.MessageHandler);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment