'Declaration
Overloads Function ReadLine( _ ByVal timeout As Integer, _ ByVal option As ReadOption, _ ByRef sawEndOfLine As Boolean _ ) As String
'Usage
Dim instance As IScreen Dim timeout As Integer Dim option As ReadOption Dim sawEndOfLine As Boolean Dim value As String value = instance.ReadLine(timeout, option, sawEndOfLine)
string ReadLine( int timeout, ReadOption option, out bool sawEndOfLine )
Parameters
- timeout
- Time in seconds to wait for line-feed character. The range of valid values is 0 through 99.
- option
- Additional read options.
- sawEndOfLine
- Returns true if line-feed character was received, otherwise false.
Return Value
Line of data read from the host (excluding CR/LF characters).