C# DownloadFileAsync 回调未被触发

发布于 2024-11-30 08:25:16 字数 672 浏览 0 评论 0原文

由于某种原因,我指定的异步回调似乎没有被调用。我在由原始应用程序线程启动的线程中得到了以下内容:

WebClient webClient = new WebClient();
webClient.DownloadFileCompleted += DownloadCompleted;
webClient.DownloadProgressChanged += DownloadProgressChanged;
webClient.DownloadFileAsync(new Uri(downloadUrl), tempPath);

对于我得到的回调:

public void DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
    Console.WriteLine("progress");
}

public void DownloadCompleted(object sender, AsyncCompletedEventArgs e)
{
    Console.WriteLine("completed");
}

我使用断点来验证 downloadUrl 和 tempPath 字符串是否都有效(并且我可以在Windows 资源管理器)。关于为什么回调不会被触发的任何见解?谢谢!

For some reason, the Async callbacks I've specified don't seem to get called. I've got the following in a Thread started by the original application thread:

WebClient webClient = new WebClient();
webClient.DownloadFileCompleted += DownloadCompleted;
webClient.DownloadProgressChanged += DownloadProgressChanged;
webClient.DownloadFileAsync(new Uri(downloadUrl), tempPath);

And for the callbacks I've got:

public void DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
    Console.WriteLine("progress");
}

public void DownloadCompleted(object sender, AsyncCompletedEventArgs e)
{
    Console.WriteLine("completed");
}

I've used breakpoints to verify that the downloadUrl and tempPath strings are both valid (and I can see the downloaded file in Windows Explorer). Any insight on why the callbacks wouldn't be trigger? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文