Example #1
0
 public FtpClient(string host, string user, string password, int port)
 {
     _ftp = new Ftp();
     _ftp.ConnectSSL(host, port);
     _ftp.Login(user, password);
 }