Execute Method
Execute a Command on the remote host.
Syntax
[VB.NET] Public Sub Execute(ByVal Command As String)
[C#] public void Execute(string command);
Remarks
Calling this method is equivalent to setting the Command property to Command.
Example (Execute a Command)
RexecControl.Execute("cd /home/username/; ls -al; cd/; ls")NOTE: This method has a corresponding asynchronous version (ExecuteAsync) for use in the WinRT environment.