SerialDevice.OutputStream 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.
Gets an output stream to which the app can write data to transmit through the serial port.
public:
property IOutputStream ^ OutputStream { IOutputStream ^ get(); };
IOutputStream OutputStream();
public IOutputStream OutputStream { get; }
var iOutputStream = serialDevice.outputStream;
Public ReadOnly Property OutputStream As IOutputStream
Property Value
The output steam that contains the transfer data.
Remarks
To write data, first get the output stream from the SerialDevice object by using OutputStream property and then use the DataWriter object to write the actual buffer.