Channel9Downloader.DataAccess.WebDownloader.DownloadFileAsync C# (CSharp) Метод

DownloadFileAsync() публичный Метод

Downloads a file asynchronously.
public DownloadFileAsync ( Uri address, string filename ) : void
address System.Uri The address of the resource to download.
filename string The name of the local file that is to receive the data.
Результат void
        public void DownloadFileAsync(Uri address, string filename)
        {
            _webClient.DownloadFileAsync(address, filename);
        }