Renci.SshNet.ConnectionInfo.ConnectionInfo C# (CSharp) Method

ConnectionInfo() public method

Initializes a new instance of the ConnectionInfo class.
is null. is null, a zero-length string or contains only whitespace characters. is not within and . is null. No specified.
public ConnectionInfo ( string host, int port, string username ) : System
host string The host.
port int The port.
username string The username.
return System
        public ConnectionInfo(string host, int port, string username, params AuthenticationMethod[] authenticationMethods)
            : this(host, port, username, ProxyTypes.None, null, 0, null, null, authenticationMethods)
        {
        }

Same methods

ConnectionInfo::ConnectionInfo ( string host, int port, string username, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword ) : System
ConnectionInfo::ConnectionInfo ( string host, string username ) : System