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

PrivateKeyConnectionInfo() public method

Initializes a new instance of the PrivateKeyConnectionInfo class.
public PrivateKeyConnectionInfo ( string host, int port, string username ) : System
host string Connection host.
port int Connection port.
username string Connection username.
return System
        public PrivateKeyConnectionInfo(string host, int port, string username, params PrivateKeyFile[] keyFiles)
            : this(host, port, username, ProxyTypes.None, string.Empty, 0, string.Empty, string.Empty, keyFiles)
        {
        }

Same methods

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