下载大文件时,WebClient.OpenReadAsync(url)会抛出OutOfMemory

时间:2016-05-12 08:31:09

标签: c# windows-phone-8 out-of-memory webclient

我正在使用WebClienturl下载文件,以下代码适用于小文件大小,但在下载视频文件时会抛出OutOfMemoryException> 100MB。

WebClient webClient = new WebClient();
webClient.OpenReadCompleted += (send, args) => Save(fileName, albumName, args.Result, uri);
webClient.DownloadProgressChanged += webClient_DownloadAlbumsProgressChanged;
webClient.OpenReadAsync(uri); 
  

System.OutOfMemoryException:内存不足,无法继续执行程序。

请帮帮我

0 个答案:

没有答案