Discuss this help topic in SecureBlackbox Forum
Defines possible soket types.
Declaration
[C#]
TElSocketType = short;
const short istStream = 0;
const short istDatagram = 1;
[VB.NET]
TElSocketType As Short
Const istStream As Short = 0
Const istDatagram As Short = 1
[Pascal]
TElSocketType = (istStream, istDatagram);
[C++]
typedef uint8_t TElSocketTypeRaw;
typedef enum { istStream = 0, istDatagram = 1 } TElSocketType;
[PHP]
class TElSocketType extends TSBBaseEnum {
const istStream = 0;
const istDatagram = 1;
}
Possible values
Declared in
.NET:
- Namespace: SBSocket
- Assembly: BaseBlackbox
VCL:Java:
- Package: SecureBlackbox.Base.jar
C++:
Discuss this help topic in SecureBlackbox Forum