Discuss this help topic in SecureBlackbox Forum

TElWebSocketMessage.PayloadData

TElWebSocketMessage     See also     


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


Contains the payload data.

Declaration

[C#]
    byte[] PayloadData;

[VB.NET]
    Property PayloadData As Byte()

[Pascal]
    property PayloadData : ByteArray;

[C++]
    void get_PayloadData(std::vector<uint8_t> &OutResult);
    void set_PayloadData(const std::vector<uint8_t> &Value);

[PHP]
    string get_PayloadData()
    void set_PayloadData(array of byte|string|NULL $Value)

[Java]
    byte[] getPayloadData();
    void setPayloadData(byte[] Value);

Description

    The payload data consists of extension data and applications data. The total length of the payload data is specified by the PayloadLen property. The length of the extension data is specified when the extensions are negotiated at the opening handshake.

See also:     PayloadLen     OpCode    

Discuss this help topic in SecureBlackbox Forum