public void WebsocketSend(string data, int connection = 0)
The data to send
0
No description provided.
void
using System;
public class CPHInline
{
public bool Execute()
{
//Send "Hello, world!" over the custom Websocket Client with index 0
//Index is from top to bottom of the clients list, starting at 0
CPH.WebsocketSend("Hello, world!", 0);
return true;
}
}