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 }
public FluentFtpClientConnection(string host, NetworkCredential credential) : base(host, credential) { _client = _getClient(); }
public FluentFtpClientConnection(FtpConfig ftpConfig) : base(ftpConfig) { _client = _getClient(); }
public FluentFtpClientConnection(Uri uri, NetworkCredential credential) : base(uri, credential) { _client = _getClient(); }