SerialDevice.InputStream Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.