AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Comunicación / Sockets
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Otros
Procedimientos almacenados
Checks the existence of socket.
Remarks:
  • To check the connection validity, use SocketClientInfo to check the IP address of client socket and the port number.
  • The socket exists as long as the created socket was not closed by SocketClose.
  • If the communication is interrupted, SocketExist may still return a positive result even if the dialog is stopped.
Ejemplo
// Vérification de l'existence avant la création
IF SocketExist("MaSocket") = False THEN
	IF SocketCreate("MaSocket", 8000) = False THEN
		 Error("Erreur création " + ErrorInfo(errMessage))
	 END
ELSE
	 SocketRead("MaSocket", False)
END
Sintaxis
<Result> = SocketExist(<Socket name>)
<Result>: Boolean
  • True if the socket exists,
  • False otherwise.
<Socket name>: Character string
Name of socket to check.
For a WINDEV application, this name was defined:
Observaciones
Componente: wd290com.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 09/04/2024

Señalar un error o enviar una sugerencia | Ayuda local