Exemplo n.º 1
0
 /// <summary>
 /// Downloads a request uri to a local file.
 /// </summary>
 /// <param name="requestUri">The request uri to download.</param>
 /// <param name="destinationFile">The local destination file to copy the data to.</param>
 public void DownloadFile(string requestUri, string destinationFile)
 {
     Nequeo.Net.Http.HttpClient http = new Http.HttpClient();
     http.Connection = _connection;
     http.DownloadFile(requestUri, destinationFile);
 }