TcpClient.Active 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,它指示是否已建立连接。
protected:
property bool Active { bool get(); void set(bool value); };
protected bool Active { get; set; }
member this.Active : bool with get, set
Protected Property Active As Boolean
属性值
如果已建立连接,则为 true
;否则为 false
。
注解
派生自 TcpClient 的类可以使用此属性来确定连接尝试是否成功。 它不监视 的正在进行的连接状态 TcpClient
。 如果远程主机关闭连接, Active
则不会更新。 如果派生自 TcpClient
并且需要更密切地关注连接状态,请使用 Connected 属性返回Client的 Socket 的 属性。