WebsocketSend

Send data over a configured WebSocket client

Signature

public void WebsocketSend(string data, int connection = 0)

Parameters

data
string required

The data to send

connection
int
Default:
0

The index of the WebSocket Client

Zero-indexed based on the order you see in Servers/Clients > WebSocket Clients
e.g. The first client in the list is 0, the second client in the list is 1, and so on...

Return Type

void

Example

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;
    }
}