TcpIp_WriteText
Outputs a string through a connected TCP socket.
Syntax
C++
Python
def TcpIp_WriteText( inSocket: int, inText: str, /, *, inSuffix: str = "\"\\\\r\\\\n\"" ) -> None
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inSocket | int | Connected socket ID. | |
![]() |
inText | str | Text to send through socket. | |
![]() |
inSuffix | str | "\"\\\\r\\\\n\"" | Additional data to send, like a newline, escaped. |

