Visual Basic Serial Port Readline

Jan 03, 2006  readline problem for serialport. Visual Basic.NET Forums on Bytes. I've got a strange problem using the readline method in vb2005 for reading the serial port. If I use the readchar method I can receive one character from serialport. This is the code I use.

-->

Definition

Reads all immediately available bytes, based on the encoding, in both the stream and the input buffer of the SerialPort object.

Returns

The contents of the stream and the input buffer of the SerialPort object.

Exceptions

The specified port is not open.

Remarks

This method returns the contents of the stream and internal buffer of the SerialPort object as a string. This method does not use a time-out. Note that this method can leave trailing lead bytes in the internal buffer, which makes the BytesToRead value greater than zero.

If it is necessary to switch between reading text and reading binary data from the stream, select a protocol that carefully defines the boundary between text and binary data, such as manually reading bytes and decoding the data.

Note

Realistic Bus Animations. Amazing Indonesia Bus Driving Game. Multiple Buses To Drive. Smooth and Easy Controls. Download ets bus simulator indonesia 2.

The SerialPort class buffers data, but the stream object contained in the SerialPort.BaseStream property does not. Therefore, the SerialPort object and the stream object might differ on the number of bytes that are available to read. When bytes are buffered to the SerialPort object, the BytesToRead property includes these bytes in its value; however, these bytes might not be accessible to the stream contained in the BaseStream property.

Applies to