I have an app that uploads files to server using the webclient.
I’d like to display a progressbar while the file upload is in progress.
How would I go about achieving this?
I have an app that uploads files to server using the webclient. I’d like
Share
WebClient.UploadFileAsync will allow you to do this.
…
Note that the thread won’t block on Upload anymore, so I’d recommend using:
…