WebSocket SendMessage Method (String)C# API
Send a text message to the server.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public void SendMessage(
	string text
)

Parameters

text
Type: System String
The message to send
Remarks

The WebSocket must be opened, by calling the Open  method, before any messages can be sent to the server. The text will be encoded as UTF-8 before being sent to the server.
See Also