Discuss this help topic in SecureBlackbox Forum
Declaration
[C#]
public enum TSSHClientState { csBefore = 0, csIdentificationLineReceived = 1, csIdentificationLineSent = 2 };
[VB.NET]
Enum TSSHClientState
csBefore = 0
csIdentificationLineReceived = 1
csIdentificationLineSent = 2
End Enum
[Pascal]
under development
[C++]
typedef uint8_t TSSHClientStateRaw;
typedef enum { csBefore = 0, csIdentificationLineReceived = 1, csIdentificationLineSent = 2 } TSSHClientState;
[PHP]
class TSSHClientState extends TSBBaseEnum {
const csBefore = 0;
const csIdentificationLineReceived = 1;
const csIdentificationLineSent = 2;
}
[Java]
public enum TSSHClientState { csBefore, csIdentificationLineReceived, csIdentificationLineSent }
Possible values
Declared in
.NET:
- Namespace: SBSSHClient
- Assembly: SecureBlackbox...
VCL:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum