So Im using:
using (var client = new SshClient(connectionInfo))
{
client.Connect();
var cmd = client.RunCommand(command);
unixResults = cmd.Result;
client.Disconnect();
}
Does var cmd = client.RunCommand(command); have a timeout? If the command causes unix to hang or whatnot, will it ever timeout? Or will the code be stuck forever waiting?