klyn.net.ssl.SSLSocket.send
method
public send(value as String) as Boolean throws SSLException:
Description
Sends text to the peer.
import klyn.net.ssl

socket = SSLSocket("example.com", 443)
socket.send("PING")
socket.close()
Parameters
  • value Text to send.
Returns
True when at least one byte was written. ```klyn import klyn.net.ssl socket = SSLSocket("example.com", 443) socket.send("PING") socket.close() ```