Discuss this help topic in SecureBlackbox Forum

TSSHVersions

Declared in     See also     


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


Declaration

[C#]
    TSSHVersions = int;
        const int sbSSH1 = 1;
        const int sbSSH2 = 2;

[VB.NET]
    TSSHVersions As Integer
        Const sbSSH1 As Integer = 1
        Const sbSSH2 As Integer = 2

[Pascal]
    under development

[C++]
    typedef uint8_t TSSHVersionRaw;
    typedef enum { sbSSH1 = 0, sbSSH2 = 1 } TSSHVersion;
    
    typedef uint32_t TSSHVersionsRaw;
    typedef enum { f_sbSSH1 = 1, f_sbSSH2 = 2 } TSSHVersions;

[PHP]
    class TSSHVersions extends TSBBaseEnum {
        const sbSSH1 = 1;
        const sbSSH2 = 2;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBSSHCommon
  • Assembly: SecureBlackbox...
VCL:
  • Unit: SBSSHCommon
Java:
  • Package: SecureBlackbox...jar
C++:
  • sbsshcommon.h

See also:     TSSHVersion    

Discuss this help topic in SecureBlackbox Forum