SerialPort.BreakState 属性

定义

获取或设置中断信号状态。

public:
 property bool BreakState { bool get(); void set(bool value); };
public bool BreakState { get; set; }
[System.ComponentModel.Browsable(false)]
public bool BreakState { get; set; }
member this.BreakState : bool with get, set
[<System.ComponentModel.Browsable(false)>]
member this.BreakState : bool with get, set
Public Property BreakState As Boolean

属性值

如果端口处于中断状态,则为 true;否则为 false

属性

例外

此端口处于无效状态。

- 或 -

尝试设置基础端口状态失败。 例如,从此 SerialPort 对象传递的参数无效。

流已关闭。 这可能会因为尚未调用 Open() 方法或已调用了 Close() 方法而发生。

注解

当传输暂停且线路处于中断状态时,将发生中断信号状态, (所有低、无停止位) ,直到释放。 若要进入中断状态,请将此属性设置为 true。 如果端口已处于中断状态,则再次将此属性设置为 true 不会导致异常。 当 为 trueBreakState,无法写入 SerialPort 对象。

适用于