コード例 #1
0
 public void DownloadFile(string url, string targetLocation)
 {
     BootstrapperHelper.PrepareWebClient(Client, url, envProxy);
     Client.DownloadFile(url, targetLocation);
 }
コード例 #2
0
 public string DownloadString(string address)
 {
     BootstrapperHelper.PrepareWebClient(Client, address, envProxy);
     return(Client.DownloadString(address));
 }