Skip to content

Instantly share code, notes, and snippets.

@tomwis
Created October 13, 2018 15:13
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/9315b7bf54ab260ad0a6de9528fb2d13 to your computer and use it in GitHub Desktop.
Save tomwis/9315b7bf54ab260ad0a6de9528fb2d13 to your computer and use it in GitHub Desktop.
using (var client = new WebClient())
{
client.DownloadDataCompleted += Client_DownloadDataCompleted;
client.DownloadDataAsync(new Uri("https://www.google.pl"));
}
void Client_DownloadDataCompleted(object sender, DownloadDataCompletedEventArgs e)
{
// Tutaj robimy coś z pobranymi danymi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment