Ejemplo n.º 1
0
 public static void SendBinary(this IObservableWebsocket ws, byte[] data) =>
 ws.Send(data, WebSocketMessageType.Binary, true);
Ejemplo n.º 2
0
 public static void SendText(this IObservableWebsocket ws, string text, Encoding encoding) =>
 ws.Send(encoding.GetBytes(text), WebSocketMessageType.Text, true);