Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSBSftpTransferBlockState { bsRequested = 0, bsPostponed = 1, bsFinished = 2 };
[VB.NET]
Enum TSBSftpTransferBlockState
bsRequested = 0
bsPostponed = 1
bsFinished = 2
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSBSftpTransferBlockStateRaw;
typedef enum { bsRequested = 0, bsPostponed = 1, bsFinished = 2 } TSBSftpTransferBlockState;
[PHP]
class TSBSftpTransferBlockState extends TSBBaseEnum {
const bsRequested = 0;
const bsPostponed = 1;
const bsFinished = 2;
}
[Java]
public enum TSBSftpTransferBlockState { bsRequested, bsPostponed, bsFinished }
Possible values
Declared in
.NET:
- Namespace: SBSftpCommon
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum