I am using this method (WebClient
Class) for downloading a file from the Internet :
private Task DownloadUpdate(string url, string fileName)
{
var wc = new WebClient();
return wc.DownloadFileTaskAsync(new Uri(url), @"c:\download" + fileName);
}
How can I make the download resumable using the above code?