Discuss this help topic in SecureBlackbox Forum

TSBFTPAuthCmd

Declared in     


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


Declaration

[C#]
    TSBFTPAuthCmd = short;
        const short acAuto = 0;
        const short acAuthTLS = 1;
        const short acAuthSSL = 2;
        const short acAuthTLSP = 3;
        const short acAuthTLSC = 4;

[VB.NET]
    TSBFTPAuthCmd As Short
        Const acAuto As Short = 0
        Const acAuthTLS As Short = 1
        Const acAuthSSL As Short = 2
        Const acAuthTLSP As Short = 3
        Const acAuthTLSC As Short = 4

[Pascal]
    under development

[C++]
    typedef uint8_t TSBFTPAuthCmdRaw;
    typedef enum { acAuto = 0, acAuthTLS = 1, acAuthSSL = 2, acAuthTLSP = 3, acAuthTLSC = 4 } TSBFTPAuthCmd;

[PHP]
    class TSBFTPAuthCmd extends TSBBaseEnum {
        const acAuto = 0;
        const acAuthTLS = 1;
        const acAuthSSL = 2;
        const acAuthTLSP = 3;
        const acAuthTLSC = 4;
    }

[Java]
    not available

Possible values

Declared in

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

Discuss this help topic in SecureBlackbox Forum