Channel9Downloader.DataAccess.WebDownloader.DownloadFileAsync C# (CSharp) Method

DownloadFileAsync() public method

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.
return void
        public void DownloadFileAsync(Uri address, string filename)
        {
            _webClient.DownloadFileAsync(address, filename);
        }