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