Discuss this help topic in SecureBlackbox Forum
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:Java:
- Package: SecureBlackbox...jar
C++:
Discuss this help topic in SecureBlackbox Forum