Xceed .NET Libraries Documentation
Connected Property (SSHClient)


Xceed.SSH.Client Assembly > Xceed.SSH.Client Namespace > SSHClient Class : Connected Property
Gets a System.Boolean value that indicates if the SSHClient object is connected to a server or not.
Syntax
'Declaration
 
Public ReadOnly Property Connected As Boolean
'Usage
 
Dim instance As SSHClient
Dim value As Boolean
 
value = instance.Connected
public bool Connected {get;}

Property Value

true if the SSHClient object is connected to a server. %false otherwise.
Remarks

The property's value is true once a call to Connect() is successful. The value is false after a call to Disconnect().

Use this property to verify the client's state before calling methods that require to be connected or not connected.

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

SSHClient Class
SSHClient Members