Skip to content

alias ReceivePatternMode


(alias) ReceivePatternMode = ("*a"|"*l")
    | "*a" -- Reads from the socket until the connection is closed. No end-of-line translation is performed
    | "*l" -- Reads a line of text from the socket. The line is terminated by a LF character (ASCII 10), optionally preceded by a CR character (ASCII 13). The CR and LF characters are not included in the returned line. In fact, all CR characters are ignored by the pattern.