IPWorks WebSockets 2020 JavaScript Edition

Questions / Feedback?

WebSocketProxy Configuration

The class accepts one or more of the following configuration settings. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these internal properties is provided through the Config method.

WebSocketProxy Configuration Settings

DataFormat[ConnectionId]:   Determines how data is sent.

The format of the data being sent. When data is sent over an established connection it is either considered as text or binary data. Text data is UTF-8 encoded. Binary data has no encoding associated with it.

Possible values are:

0 (dfAutomatic - default) The class will attempt to automatically determine the correct data format. This is suitable for most cases.
1 (dfText) The class will UTF-8 encode the specified data before sending. Data that has already been UTF-8 encoded may also be supplied.
2 (dfBinary) The class will send the data exactly as it is provided.
9 (dfPing) The class will send the ping with data exactly as it is provided.
10 (dfPong) The class will send the pong with data exactly as it is provided.

An example of setting it:

websocketproxy1.OnConnected += (obj, ev) => {
  websocketproxy1.Config("DataFormat[" + ev.ConnectionId + "]=2"); // Binary
};

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks WebSockets 2020 JavaScript Edition - Version 20.0 [Build 8262]