Discuss this help topic in SecureBlackbox Forum

TSBHostRole

Declared in     


Filter: C#/Java  VB.NET  Pascal  C++  


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:
  • Unit: SBTypes
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbtypes.h

Discuss this help topic in SecureBlackbox Forum