0

我做了一些谷歌搜索,但找不到我要找的东西。我同时开始多个异步下载,我想检查下载了哪个文件。我怎样才能做到这一点?

Private Sub client_DownloadCompleted(ByVal sender As Object, ByVal e As System.ComponentModel.AsyncCompletedEventArgs)

    MsgBox("Download Completed!") ' I want to add the name of the downloaded file in this message

End Sub

提前致谢!问候

4

1 回答 1

0

AsyncCompletedEventArgs中有一个属性 UserState。这样您就可以访问您在启动异步任务时设置的数据。只需在 UserState 中填写路径并使用即可。要设置用户数据值,您可以使用此重载DownloadFileAsync

于 2013-10-29T09:00:01.657 回答