Write (socket connections)
Minimum version: 4.0
Purpose
Sends the provided string to a remote host through an Internet socket connection.
Syntax
Socket.Write (String)
String |
The string you want to send. When working with Internet protocols, remember to send appropriate line breaks at the ends of your strings. |
Example
Dim sockme as Socket
sockme.Write ("GET index.html" & Chr(13) & Chr(10))
|