Discuss this help topic in SecureBlackbox Forum

TSSHCloseType

Declared in     


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


Declaration

[C#]
    public enum TSSHCloseType { ctReturn = 0, ctSignal = 1, ctError = 2 };

[VB.NET]
    Enum TSSHCloseType
        ctReturn = 0
        ctSignal = 1
        ctError = 2
    End Enum

[Pascal]
    under development

[C++]
    typedef uint8_t TSSHCloseTypeRaw;
    typedef enum { ctReturn = 0, ctSignal = 1, ctError = 2 } TSSHCloseType;

[PHP]
    class TSSHCloseType extends TSBBaseEnum {
        const ctReturn = 0;
        const ctSignal = 1;
        const ctError = 2;
    }

[Java]
    public enum TSSHCloseType { ctReturn, ctSignal, ctError }

Description

    This topic is under development.

Declared in

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

Discuss this help topic in SecureBlackbox Forum