'Declaration
Overloads Function ReadUntil( _ ByVal terminatorChars As String, _ ByVal timeout As Integer _ ) As String
'Usage
Dim instance As IScreen Dim terminatorChars As String Dim timeout As Integer Dim value As String value = instance.ReadUntil(terminatorChars, timeout)
string ReadUntil( string terminatorChars, int timeout )
Parameters
- terminatorChars
- Specifies one or more terminator characters. Any one of these characters can terminate the read operation.
- timeout
- Time in seconds to wait for terminator character. The range of valid values is 0 through 99.
Return Value
The string of data which was read from the host.