CommandExecutionResult Class
Represents results of Session.ExecuteCommand.
Advertisement
Syntax
Namespace: WinSCP
C#
public sealed class CommandExecutionResult : OperationResultBase
VB.NET
Public NotInheritable Class CommandExecutionResult Inherits OperationResultBase
Properties
Name | Description |
---|---|
string ErrorOutput | Error output of the command. Read-only. |
int ExitCode | Exit code of the command. Read-only. |
SessionRemoteExceptionCollection Failures | Collection of all errors that occured during batch operation. See SessionRemoteException . See also Capturing results of operations. Read-only. (Inherited from OperationResultBase .) |
bool IsSuccess | Is true , if Failures is empty collection. Read-only. (Inherited from OperationResultBase .) |
string Output | Standard output of the command. Read-only. |
Methods
Name | Description |
---|---|
Check | Noop, if IsSuccess is true . Throws the first error in Failures , if IsSuccess is false . (Inherited from OperationResultBase .) |
Advertisement
Remarks
This class can only be instantiated by the WinSCP assembly. To get an instance of the class, call Session.ExecuteCommand
.