SerialDevice.BreakSignalState Property

Definition

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.

Applies to