Skip to content

Instantly share code, notes, and snippets.

@tomwis
Created October 13, 2018 15:18
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 tomwis/e30549c5c2593fa91ec4f8f5c6e9dbbe to your computer and use it in GitHub Desktop.
Save tomwis/e30549c5c2593fa91ec4f8f5c6e9dbbe to your computer and use it in GitHub Desktop.
private async Task DownloadSomething()
{
using (var client = new WebClient())
{
var data = await client.DownloadDataTaskAsync(new Uri("https://www.google.pl"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment