The ReceiveLine method will return a full line from the buffer, if one
exists. wodSSH will remove end-of-line markers (vbLf, vbCr and
vbCrLf) so when you get a line of text you don't need to trim or remove
these special codes.
If no line can be found in the buffer (i.e. there are no CR/LF bytes to indicate the end of a line) then the component will return error 30043 ("None found"). If wodSSH returns an empty string this means that
it found a blank string terminated with CR/LF characters and there may be
more lines to read.
Unlike the Receive
method, this method only returns string expressions and cannot
return a byte array. In
Blocking mode, wodSSH will wait until
Timeout expires to
receive a full line if it does not find one in the buffer.