Discuss this help topic in SecureBlackbox Forum

TElWebSocketMessage.MaskKey

TElWebSocketMessage     See also     


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


Specifies the masking key.

Declaration

[C#]
    byte[] MaskKey;

[VB.NET]
    Property MaskKey As Byte()

[Pascal]
    property MaskKey : ByteArray;

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

[PHP]
    string get_MaskKey()
    void set_MaskKey(array of byte|string|NULL $Value)

[Java]
    byte[] getMaskKey();
    void setMaskKey(byte[] Value);

Description

    When Mask is True, this property contains a 32-bit masking key. The masking key should be randomly generated by the client. When Mask is False, MaskKey should be empty (0 bytes).

See also:     Mask    

Discuss this help topic in SecureBlackbox Forum