OperationResultBase Class
Represents results of abstract batch operation.
Advertisement
Syntax
Namespace: WinSCP
C#
public class OperationResultBase
VB.NET
Public Class OperationResultBase
Properties
Name | Description |
---|---|
SessionRemoteExceptionCollection Failures | Collection of all errors that occured during batch operation. See SessionRemoteException . See also Capturing results of operations. Read-only. |
bool IsSuccess | Is true , if Failures is empty collection. Read-only. |
Methods
Name | Description |
---|---|
Check | Noop, if IsSuccess is true . Throws the first error in Failures , if IsSuccess is false . See also Capturing results of operations. |
Remarks
This is base class for RemovalOperationResult
, SynchronizationResult
and TransferOperationResult
.
Advertisement