public void Download(string SrourcePath, string DestinationDirectory, DownloadInfo info = null)
 {
     try
     {
         client.DownloadFile(SrourcePath, DestinationDirectory + "\\" + Helper.GetFileName(SrourcePath));
     }
     catch (Exception e)
     {
         throw e;
     }
 }
Ejemplo n.º 2
0
 public void Download(string SrourcePath, string DestinationDirectory, DownloadInfo info = null)
 {
     throw new NotImplementedException();
 }