SerialDevice.OutputStream Property

Definition

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.

Applies to