Skip to content

Instantly share code, notes, and snippets.

@Majirefy
Created January 19, 2018 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Majirefy/580870a985532f8ab623bdf8afaf11b1 to your computer and use it in GitHub Desktop.
Save Majirefy/580870a985532f8ab623bdf8afaf11b1 to your computer and use it in GitHub Desktop.
Use ConfigureAwait(false) for preventing the deadlock.
public static async Task<JObject> GetJsonAsync(Uri uri)
{
using (var client = new HttpClient())
{
var jsonString = await client.GetStringAsync(uri).ConfigureAwait(false);
return JObject.Parse(jsonString);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment