コード例 #1
0
 /// <summary>Downloads the resource with the specified URI to a local file, asynchronously.</summary>
 /// <param name="webClient">The WebClient.</param>
 /// <param name="address">The URI from which to download data.</param>
 /// <param name="fileName">The name of the local file that is to receive the data.</param>
 /// <returns>A Task that contains the downloaded data.</returns>
 public static Task DownloadFileTask(this WebClient webClient, string address, string fileName)
 {
     return(webClient.DownloadFileTask(new Uri(address), fileName));
 }