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

DownloadData() public method

Downloads the resource with the specified URI to a local file.
public DownloadData ( string address, string filename ) : void
address string The URI from which to download data.
filename string The name of the local file that is to receive the data.
return void
        public void DownloadData(string address, string filename)
        {
            _webClient.DownloadFile(new Uri(address), filename);
        }