SerialDevice.InputStream Property

Definition

Input stream that contains the data received on the serial port.

public:
 property IInputStream ^ InputStream { IInputStream ^ get(); };
IInputStream InputStream();
public IInputStream InputStream { get; }
var iInputStream = serialDevice.inputStream;
Public ReadOnly Property InputStream As IInputStream

Property Value

Input stream that contains the data received

Remarks

To access data received on the port, get the input stream from SerialDevice object, and then use the DataReader to read data.

Applies to