Discuss this help topic in SecureBlackbox Forum

TSBHostRole

Declared in     


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


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

Discuss this help topic in SecureBlackbox Forum