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

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

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.
Результат void
        public void DownloadData(string address, string filename)
        {
            _webClient.DownloadFile(new Uri(address), filename);
        }