FTPS TLS versions (wodFtpDLX / wodFtpDLX.NET)
Hi.
I just tried with public FTP server, as suggested here with OpenSSL https://sockettools.com/kb/testing-secure-connections-with-openssl/ under "checking FTP servers". I did set
ftp1.SecureMethod = System.Security.Authentication.SslProtocols.Tls12;
to force TLS12. I did connect successfully, and in wodFtpDLX.NET after connection was made I did
Console.WriteLine("SSL Protocol : " + m_SSLStream.SslProtocol.ToString().ToUpper());
and I got TLS1.2 as response. So, wodFtpDLX.NET does support TLS1.2 since it uses SSLStream, so it's all up to NET framework.
I can't say about your tests or servers or settings. But it is supported.
Regards