Discuss this help topic in SecureBlackbox Forum
Defines host roles.
Declaration
[C#/Java]
enum TSBHostRole { hrNone = 0, hrServer = 1, hrClient = 2, hrBoth = 3 };
[VB.NET]
Enum TSBHostRole
hrNone = 0
hrServer = 1
hrClient = 2
hrBoth = 3
End Enum
[Pascal]
TSBHostRole = (hrNone, hrServer, hrClient, hrBoth);
[C++]
typedef uint8_t TSBHostRoleRaw;
typedef enum { hrNone = 0, hrServer = 1, hrClient = 2, hrBoth = 3 } TSBHostRole;
Description
Possible values:
Declared in
.NET:
- Namespace: SBTypes
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum