Ejemplo n.º 1
0
 public SystemNetFtpClientConnection(FtpConfig ftpConfig)
     : base(ftpConfig)
 {
     _client = _getClient();
 }
Ejemplo n.º 2
0
 public SystemNetFtpClientConnection(string host, NetworkCredential credentials)
     : base(host, credentials)
 {
     _client = _getClient();
 }
Ejemplo n.º 3
0
 public SystemNetFtpClientConnection(Uri uri, NetworkCredential credentials)
     : base(uri, credentials)
 {
     _client = _getClient();
 }