Contains the event data associated with a WebSocket.OnMessage event.
Gets the received data as a string.
Syntax
public string Data { get; }Value
A string that contains a received data.Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Gets the received data as an array of byte.
Syntax
public byte[] RawData { get; }Value
An array of byte that contains a received data.Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)
Gets the type of received data.
Syntax
public Opcode Type { get; }Value
One of the Frame.Opcode that indicates the type of received data.Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)