WebSocket.receiveText

Receives a new message and returns its contents as a newly allocated data array.

class WebSocket
@safe
string
receiveText
(
bool strict = true
)

Parameters

strict bool

If set, ensures the exact frame type (text/binary) is received and throws an execption otherwise.

Throws

WebSocketException if the connection is closed or if strict == true and the frame received is not the right type

Meta