How would it be possible to terminate this method / download function?
private void Download_Click(object sender, EventArgs e)
{
WebClient webClient = new WebClient();
webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Completed);
webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(ProgressChanged);
webClient.DownloadFileAsync(new Uri("http://google.com/test.zip"), @"test.zip");
}
Basically cancel the download function
Do this:
webClient.CancelAsync();