-1

I need to apply encryption mode in FluentFTP's ftp.

The syntax "EncryptionMode" don't exist in .net 6.

var conn = new FtpClient();
conn.EncryptionMode = FtpEncryptionMode.Explicit;

enter image description here

How should I apply EncryptionMode in FluentFTP's ftp in .net6?

Thank you?

HelloWorld1
  • 13,688
  • 28
  • 82
  • 145

1 Answers1

1

The answer is:

Config.EncryptionMode

https://github.com/robinrodricks/FluentFTP/wiki/FTP-Connection#how-do-i-connect-with-ssltls--how-do-i-use-ftps

Julian
  • 33,915
  • 22
  • 119
  • 174
HelloWorld1
  • 13,688
  • 28
  • 82
  • 145