Discuss this help topic in SecureBlackbox Forum

TElSocketType

Declared in     


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


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;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBSocket
  • Assembly: BaseBlackbox
VCL:
  • Unit: SBSocket
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbsocket.h

Discuss this help topic in SecureBlackbox Forum