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