FluentFTP中有任何加密模式吗?

huangapple go评论66阅读模式
英文:

Any EncryptionMode in FluentFTP?

问题

需要在FluentFTP的ftp中应用加密模式。

在.NET 6中,“EncryptionMode”语法不存在。

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

在.NET 6中,我该如何应用FluentFTP的ftp中的EncryptionMode?

谢谢!

英文:

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;

FluentFTP中有任何加密模式吗?

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

Thank you?

答案1

得分: 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

英文:

The answer is:

Config.EncryptionMode

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

huangapple
  • 本文由 发表于 2023年2月19日 15:50:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/75498694.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定