Enum SerialHandshake
Defines values for hardware and software flow control protocols used in serial communication. The values are used by Handshake property on the SerialDevice object.
Namespace: Windows.Devices.SerialCommunication
Assembly: Windows.Devices.SerialCommunication.dll
Syntax
public enum SerialHandshake
Fields
Name | Description |
---|---|
None | No protocol is used for the handshake. |
RequestToSend | When the port is receiving data and if the read buffer is full, the Request-to-Send (RTS) line is set to false. When buffer is available, the line is set to true. When the serial port is transmitting data, CTS line is set to false and the port does not send data until there is room in the write buffer. |
RequestToSendXOnXOff | Both RequestToSend and XOnXOff controls are used for flow control. |
XOnXOff | The serial port sends an Xoff control to inform the sender to stop sending data. When ready, the port sends an Xon control to inform he sender that the port is now ready to receive data. |