TcpClient.Active 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 a value that indicates whether a connection has been made.
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
Property Value
true
if the connection has been made; otherwise, false
.
Remarks
Classes deriving from TcpClient can use this property to determine if a connection attempt has succeeded. It does not monitor the ongoing connection state of TcpClient
. If the remote host closes the connection, Active
will not be updated. If you are deriving from TcpClient
and require closer attention to the connection state, use the Connected property of the Socket returned by the Client property.