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 the 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 the 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 the received data.
Syntax
public Opcode Type { get; }Value
One of the WebSocketSharp.Opcode values that indicates the type of the received data.Remarks
Documentation for this section has not yet been entered.Requirements
Namespace: WebSocketSharp
Assembly: websocket-sharp (in websocket-sharp.dll)