Discuss this help topic in SecureBlackbox Forum

TElWebSocketBase.FrameLength

TElWebSocketBase     See also     


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


Specifies the WebSocket protocol frame length.

Declaration

[C#]
    int FrameLength;

[VB.NET]
    Property FrameLength As Integer

[Pascal]
    property FrameLength : integer;

[C++]
    int32_t get_FrameLength();
    void set_FrameLength(int32_t Value);

[PHP]
    integer get_FrameLength()
    void set_FrameLength(integer $Value)

[Java]
    int getFrameLength();
    void setFrameLength(int Value);

Description

    Each WebSocket message consists of one or more parts, or frames. Each frame belonging to the same message contains the same type of data. A frame may contain text, binary or control data. Six frame types are defined in RFC 6455, and ten are reserved for future use. Use this property to get or set the default size of a frame in bytes. The default value is 1024 bytes, or 1 kbyte.

See also:     SendData    

Discuss this help topic in SecureBlackbox Forum