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);
        }