|
|
|
|
|
- Properties specific to websocketClient variables
- WLanguage functions that use the websocketClient type
websocketClient (Variable type) In french: websocketClient
Not available
The websocketClient type is used to identify and define all the advanced characteristics of a client connected to a WebSocket server. You can define and change the characteristics of this client using different WLanguage properties. Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
tabClients is array of websocketClient = WebSocketListConnectedClient()
FOR EACH oClient OF tabClients
WebSocketSend(oClient, bufMessage)
END
Properties Properties specific to websocketClient variables The following properties can be used to handle clients connected to a WebSocket server: | | | Property name | Type used | Effect |
---|
Connected | Boolean | - True if the client is still connected,
- False otherwise.
This property is read-only. | IP | Character string | Client IP address. This property is read-only. | Note | All types | Business logic data associated with this client. This data is written through programming, to be reused later. The default value is an empty string (""). Using this property, the global context or another client can obtain information about this client. |
Remarks WLanguage functions that use the websocketClient type
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|