Discuss this help topic in SecureBlackbox Forum
Defines possible FTP transfer types.
Declaration
[C#/Java]
TSBFTPTransferType = short;
const short ttASCII = 0;
const short ttBinary = 1;
[VB.NET]
TSBFTPTransferType As SmallInt
Const ttASCII As SmallInt = 0
Const ttBinary As SmallInt = 1
[Pascal]
TSBFTPTransferType = (ttASCII, ttBinary);
[C++]
typedef uint8_t TSBFTPTransferTypeRaw;
typedef enum { ttASCII = 0, ttBinary = 1 } TSBFTPTransferType;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSimpleFTPS
- Assembly: SecureBlackbox.FTPS
VCL:Java:
- Package: SecureBlackbox.FTPS.jar
C++:
Discuss this help topic in SecureBlackbox Forum