Exemplo n.º 1
0
        public FtpStore(FluentFTP.IFtpClient ftpClient /*, string fileSystemPath*/)
        {
            _ftpClient = ftpClient;

            //FtpTrace.LogToConsole = true;

            //FtpTrace.LogUserName = false;   // hide FTP user names
            //FtpTrace.LogPassword = false;   // hide FTP passwords
            //FtpTrace.LogIP = false;   // hide FTP server IP addresses
        }
Exemplo n.º 2
0
 public FluentFtpClientConnection(string host, NetworkCredential credential)
     : base(host, credential)
 {
     _client = _getClient();
 }
Exemplo n.º 3
0
 public FluentFtpClientConnection(FtpConfig ftpConfig)
     : base(ftpConfig)
 {
     _client = _getClient();
 }
Exemplo n.º 4
0
 public FluentFtpClientConnection(Uri uri, NetworkCredential credential)
     : base(uri, credential)
 {
     _client = _getClient();
 }