SSH.Net SftpClient:我是否需要在使用块内调用Disconnect?

时间:2017-01-06 17:42:17

标签: using idisposable disconnect ssh.net

在像这样的代码中

using (var sftp = new SftpClient(_host, _userName, _password))
{
  sftp.Connect();
  // Do some work with sftp
  sftp.Disconnect();
}

是否需要sftp.Disconnect()调用或自动使用块(Dispose / Close / whatever)关闭连接?

0 个答案:

没有答案