SerialDevice.BreakSignalState 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 or sets the break signal state.
public:
property bool BreakSignalState { bool get(); void set(bool value); };
bool BreakSignalState();
void BreakSignalState(bool value);
public bool BreakSignalState { get; set; }
var boolean = serialDevice.breakSignalState;
serialDevice.breakSignalState = boolean;
Public Property BreakSignalState As Boolean
Property Value
Boolean
bool
Toggles the TX line to enable or disable data transmission.
Remarks
In serial communication, the break signal state is used to toggle the TX line. To suspend data transmission, set the property value to true. In that state, you cannot write to the serial port. To resume transmission, set to false.