我是靠谱客的博主 包容皮带,这篇文章主要介绍c# 再次尝试 连接失败_c# - Renci.SshNet连接尝试失败,因为客户端已终止连接 - 堆栈内存溢出...,现在分享给大家,希望可以做个参考。

我正在尝试使用Renci.SshNet将生成的word文档上传到SFTP服务器:

if (protocol == "SFTP")

{

if (connectorSettings.DebugMode) properties.AddInfoMessage(_actionName + " " + "File Transfer via SFTP Protocol" + ".");

//SFTP

using (var sftpClient = new SftpClient(host, port, username, password))

{

//Connect clients to server

sftpClient.Connect();

if (connectorSettings.DebugMode) properties.AddInfoMessage(_actionName + " " + "Connected to " + host + ".");

try

{

//Create remote directory

if (createDirectory && !sftpClient.Exists(directory))

{

if (connectorSettings.DebugMode) properties.AddInfoMessage(_actionName + " " + "Directory Creation Start: " + directory + ".");

最后

以上就是包容皮带最近收集整理的关于c# 再次尝试 连接失败_c# - Renci.SshNet连接尝试失败,因为客户端已终止连接 - 堆栈内存溢出...的全部内容,更多相关c#内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部