webclient downloadasync. , ,
WebClient webClient = new WebClient();
CancellationTokenSource token = new CancellationTokenSource();
token.Register(webClient.CancelAsync);
try
{
webClient.DownloadFileTaskAsync(new Uri(downloadurl), saveLocation);
}
catch(Exception ex)
{
}
Token.Cancel();
, Xamarin.Android, Xamarin.iOS.