public static IEACTFTP GetFtp(string FtpServerIP, int FtpServerPort, string FtpRemotePath, string FtpUser, string FtpPassword) { var ftp = new EACTFTP(FtpServerIP, FtpServerPort, FtpRemotePath, FtpUser, FtpPassword); return(ftp); }
public static IEACTFTP GetFtp(string FtpServerIP, string FtpRemotePath, string FtpUserID, string FtpPassword, bool SSL) { var ftp = new EACTFTP(FtpServerIP, FtpRemotePath, FtpUserID, FtpPassword, SSL); return(ftp); }