Gets the command execution error.
Namespace: Renci.SshNetAssembly: Renci.SshNet (in Renci.SshNet.dll) Version: 0.1.0.0 (1.0.0.0)
Syntax
Examples
client.Connect(); var cmd = client.CreateCommand(";"); cmd.Execute(); if (!string.IsNullOrEmpty(cmd.Error)) { Console.WriteLine(cmd.Error); } client.Disconnect();
See Also