Closes a socket or a connection to a server socket.
Caution: The connection must be closed in order for the server socket to become aware of a message in locking read mode.
Reminder: A socket is a communication resource used by applications to communicate from one computer to another regardless of the type of network.
IF SocketCreate("Server", 8000) = False THEN
Error("Creation error" + ErrorInfo(errMessage))
ELSE
...
SocketClose("Server")
END
Syntax
SocketClose(<Socket name>)
<Socket name>: Character string
Name of socket that received the message. In the WINDEV applications, this name was defined on the server: