WebSocket ClassC# API
Represents a WebSocket
Inheritance Hierarchy

System Object
  Facilita.Web WebSocket

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

public class WebSocket
Remarks

A WebSocket object is created by calling CreateWebSocket(Url, Int32). The WebSocket can then be opened by calling the Open  method. Once the WebSocket has been opened, then messages can be sent to the server using the SendMessage(String) method. Messages arriving from the server can be processed by subscribing to the ReceivedMessage event.
Examples

The following example demonstrates creating and opening a WebSocket.
Url url = new Url("ws://echo.websocket.org/");
WebSocket webSocket = WebBrowser.CreateWebSocket(url, 1);
webSocket.Open();
See Also