Sunday, December 31, 2017

c How to check if file downloaded successfully in Webclient DownloadFileCompleted event

c How to check if file downloaded successfully in Webclient DownloadFileCompleted event




c# - How to check if file downloaded successfully in Webclient DownloadFileCompleted event? -

private void client_downloadfilecompleted(object sender, asynccompletedeventargs e) { }

i want check these 2 cases:

if there error something.

if file downloaded something.

you can examine error , cancelled properties of asynccompletedeventargs instance:

if (e.error != null) { // there error, } else if (!e.cancelled) { // file downloaded fine , completed, }

c# .net winforms webclient

go to link download
download
alternative link download

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.