我是业余程序员。使用Renci.SshNet时出现错误。它使我在语句sshclient.Connect();
System.Net.Sockets.SocketException:'所引用的对象类型不支持尝试的操作'
我的代码是
private void Rstbutton_Click(object sender, RoutedEventArgs e)
{
s_ipaddr = IPAddr.Text;
s_username = UsernameBox.Text;
s_password = PassBox.Password.ToString();
SecureString myPass = PassBox.SecurePassword;
using (var sshclient = new SshClient(s_ipaddr, s_username, s_password))
{
sshclient.Connect();
}
}
我直接在参考中未安装Nuget的情况下直接使用Renci.SshNet.dll。