このメソッド/ダウンロード関数をどのように終了できますか?C#で非同期関数を終了する方法
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");
}
基本的にダウンロード機能に
方法については、MSDNライブラリの記事の「注意事項」を参照してください。 –