Discuss this help topic in SecureBlackbox Forum

TElWebSocketMessage.Mask

TElWebSocketMessage     See also     


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


Specifies whether the message is masked, or not.

Declaration

[C#]
    bool Mask;

[VB.NET]
    Property Mask As Boolean

[Pascal]
    property Mask : boolean;

[C++]
    bool get_Mask();
    void set_Mask(bool Value);

[PHP]
    bool get_Mask()
    void set_Mask(bool $Value)

[Java]
    boolean getMask();
    void setMask(boolean Value);

Description

    Use this property to check if the message is masked. The client MUST mask all frames that it sends to the server; a server MUST NOT mask any frames that it sends to the client (RFC 6455). Masking key used to mask or unmask the data is specified by the MaskKey property.

See also:     MaskKey    

Discuss this help topic in SecureBlackbox Forum