The title of this question should be self explanatory, but basically I have this code (working)
progfrm = new progressform(); System.Net.WebClient ahwebclient = new System.Net.WebClient(); progfrm.Show(); ahwebclient.UploadProgressChanged += new System.Net.UploadProgressChangedEventHandler(ahwebclient_UploadProgressChanged); ahwebclient.UploadFileCompleted += new System.Net.UploadFileCompletedEventHandler(ahwebclient_UploadFileCompleted); ahwebclient.UploadFileAsync(new Uri("http://upload.anyhub.net/bin/demovu_upload.php"), "C:/install.exe"); while (ahwebclient.IsBusy) { Application.DoEvents(); } How would I read this result of this request once it is completed?
ahwebclient_UploadFileCompletedevent handler method?