SerialPort.DsrHolding 属性

定义

获取数据设置就绪 (DSR) 信号的状态。

public:
 property bool DsrHolding { bool get(); };
public bool DsrHolding { get; }
[System.ComponentModel.Browsable(false)]
public bool DsrHolding { get; }
member this.DsrHolding : bool
[<System.ComponentModel.Browsable(false)>]
member this.DsrHolding : bool
Public ReadOnly Property DsrHolding As Boolean

属性值

如果“数据设置就绪”信号已发送到端口,则为 true;否则为 false

属性

例外

此端口处于无效状态。

- 或 -

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

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

注解

此属性用于数据集就绪/数据终端就绪 (DSR/DTR) 握手。 数据集就绪 (DSR) 信号通常由调制解调器发送到端口,以指示它已准备好进行数据传输或数据接收。

适用于