Discuss this help topic in SecureBlackbox Forum
Defines host roles.
Declaration
[C#]
public 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;
[PHP]
class TSBHostRole extends TSBBaseEnum {
const hrNone = 0;
const hrServer = 1;
const hrClient = 2;
const hrBoth = 3;
}
[Java]
public enum TSBHostRole { hrNone, hrServer, hrClient, hrBoth }
Possible values
Declared in
.NET:
- Namespace: SBTypes
- Assembly: SecureBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum