예제 #1
0
파일: FTPClient.cs 프로젝트: m4mm0n/OpenFTP
        public void SetDetails(string hostname, string hostport, string username, string password,
                               SslProtocols securityProtocols = SslProtocols.None, bool isPassive = true)
        {
            Log.Start();

            SetDetails(hostname, hostport,
                       username, password, securityProtocols.GetSSLType(), isPassive, true, 120);
        }