Renci.SshNet.Session.IsSocketConnected C# (CSharp) Method

IsSocketConnected() private method

Gets a value indicating whether the socket is connected.
private IsSocketConnected ( bool &isConnected ) : void
isConnected bool true if the socket is connected; otherwise, false
return void
        partial void IsSocketConnected(ref bool isConnected)
        {
            isConnected = (_socket != null && _socket.Connected);
        }
    }