I am running this line multiple times
But I have no idea what to put inside DownloadCompleted() that would let me identify the WebClient instance and its associated file over any other.
In DownloadCompleted() how can I indentify which URL or output filename the webclient instance is associated with?
Please help! :) Thanks
Code:
WebClient.DownloadFileCompleted, AddressOf DownloadCompleted
WebClient.DownloadFileAsync(New System.Uri(ImageURL), OutputFileName)
In DownloadCompleted() how can I indentify which URL or output filename the webclient instance is associated with?
Please help! :) Thanks