Discuss this help topic in SecureBlackbox Forum

TSBFTPTransferType

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Defines possible FTP transfer types.

Declaration

[C#]
    TSBFTPTransferType = short;
        const short ttASCII = 0;
        const short ttBinary = 1;

[VB.NET]
    TSBFTPTransferType As Short
        Const ttASCII As Short = 0
        Const ttBinary As Short = 1

[Pascal]
    TSBFTPTransferType = (ttASCII, ttBinary);

[C++]
    typedef uint8_t TSBFTPTransferTypeRaw;
    typedef enum { ttASCII = 0, ttBinary = 1 } TSBFTPTransferType;

[PHP]
    class TSBFTPTransferType extends TSBBaseEnum {
        const ttASCII = 0;
        const ttBinary = 1;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBSimpleFTPS
  • Assembly: SecureBlackbox.FTPS
VCL:
  • Unit: SBSimpleFTPS
Java:
  • Package: SecureBlackbox.FTPS.jar
C++:
  • sbsimpleftps.h

Discuss this help topic in SecureBlackbox Forum