【发布时间】:2010-08-13 07:28:09
【问题描述】:
好的,我在使用 DownloadDataAsync 并将字节返回给我时遇到了问题。这是我正在使用的代码:
private void button1_Click(object sender, EventArgs e)
{
byte[] bytes;
using (WebClient client = new WebClient())
{
client.DownloadProgressChanged += new DownloadProgressChangedEventHandler(DownloadProgressChanged);
bytes = client.DownloadDataAsync(new Uri("http://example.net/file.exe"));
}
}
void DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
{
double bytesIn = double.Parse(e.BytesReceived.ToString());
double totalBytes = double.Parse(e.TotalBytesToReceive.ToString());
double percentage = bytesIn / totalBytes * 100;
label1.Text = Math.Round(bytesIn / 1000) + " / " + Math.Round(totalBytes / 1000);
progressBar1.Value = int.Parse(Math.Truncate(percentage).ToString());
if (progressBar1.Value == 100)
{
MessageBox.Show("Download Completed");
button2.Enabled = true;
}
}
我得到的错误是“无法将类型 'void' 隐式转换为 'byte[]'”
无论如何我可以做到这一点并在下载完成后给我字节吗?删除“bytes =”时效果很好。
【问题讨论】:
标签: c# asynchronous download progress-bar