private void DownloadSingleFile() { // Set user state here webServiceClient.DownloadFileAsync(new Uri(downloadUrl), Filename); } void webServiceClient_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e) { txtStatus.Text = "File : " + e.UserState + " downloaded uccessfully !";}