Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
Socket.ReadAll
Reads bytes from socket and returns them as text.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| Socket | 4.3 | Yes | Yes | Yes | Yes | Yes |
MBS( "Socket.ReadAll"; SocketID { ; Encoding } ) More
Parameters
| Parameter | Description | Example | Flags |
|---|---|---|---|
| SocketID | The socket ID received by Socket.Connect function. | $sock | |
| Encoding | The text encoding for result. Default is native. This function can also handle UTF-16 as well as UTF-16LE and UTF-16BE for little/big endian byte order. Possible encoding names: ANSI, ISO-8859-1, Latin1, Mac, Native, UTF-8, DOS, Hex, Base64 or Windows. More listed in the FAQ. |
UTF8 | Optional |
Result
Returns OK or error.
Description
Reads bytes from socket and returns them as text.This function will look how much is in read buffer and query all bytes inside.
May not work for SSL sockets.
The buffer size of the socket is managed by the OS and can be several megabytes big if needed. To look into buffer without removing text, please use Socket.PeekAll function instead.
Examples
Read all bytes and decode them from Windows text encoding into FileMaker:
$value = MBS( "Socket.ReadAll"; $sock; "windows" )
See also
- Socket.CheckAll
- Socket.Connect
- Socket.Peek
- Socket.PeekAll
- Socket.PeekAllHex
- Socket.Read
- Socket.ReadAllHex
- Socket.ReadHex
- Socket.ReadLine
- Socket.ReadMLLP
Blog Entries
Created 11st September 2014, last changed 15th February 2019
Socket.Read - Socket.ReadAllHex
Feedback: Report problem or ask question.
Links
MBS Xojo Plugins