Correct syntax for CommandExecutionResult?
Hi,
What is the correct syntax for getting an instance of
I've tried -
and
I've tried throwing in the
What is the correct syntax for getting an instance of
CommandExecutionResult
?
I've tried -
string ceResult = session.ExecuteCommand("ls -al").Output;
CommandExecutionResult ceResult = session.ExecuteCommand("ls " + sft.destFile);
new
keyword as well, but all of these result in the exception -
Thanks.System.NullReferenceException: 'Object reference not set to an instance of an object.'