ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / WebSocket
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
<websocketClient variable>.Disconnect (Function)
In french: <Variable websocketClient>.Déconnecte
Disconnects a client from a WebSocket server.
Example
// Retrieve list of clients
arrClients is array of websocketClient = WebSocketListConnectedClient()
// Disconnect some clients
FOR EACH oClient OF arrClients
IF oClient.Disconnect() THEN
oClient.Disconnect()
END
END
Syntax
<Client>.Disconnects()
<Client>: websocketClient variable
Name of the websocketClient variable that corresponds to the client to be disconnected.
Remarks
  • The client disconnection process is called when the client is disconnected.
  • This function is asynchronous : it simply requests the disconnection of the client. The client can be actually disconnected later (after <websocketClient variable>.Disconnect has been executed). <websocketClient variable>.Disconnect never returns an error (for example, if the client has been disconnected in the meantime).
Business / UI classification: Business Logic
Component: wd290awws.dll
Minimum version required
  • Version 26
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help