Exemplo n.º 1
0
 public Ftp(string hostName, string userName, string password)
     : this()
 {
     this.Connection = new FtpConnection(hostName, userName, password);
 }
Exemplo n.º 2
0
 public Ftp(FtpConnection connection)
     : this()
 {
     this.Connection = connection;
 }
Exemplo n.º 3
0
 public Ftp(string hostName)
     : this()
 {
     this.Connection = new FtpConnection(hostName);
 }