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

PasswordConnectionInfo() public method

Initializes a new instance of the PasswordConnectionInfo class.
public PasswordConnectionInfo ( string host, int port, string username, byte password, ProxyTypes proxyType, string proxyHost, int proxyPort ) : System
host string Connection host.
port int The port.
username string Connection username.
password byte Connection password.
proxyType ProxyTypes Type of the proxy.
proxyHost string The proxy host.
proxyPort int The proxy port.
return System
        public PasswordConnectionInfo(string host, int port, string username, byte[] password, ProxyTypes proxyType, string proxyHost, int proxyPort)
            : this(host, port, username, password, proxyType, proxyHost, proxyPort, string.Empty, string.Empty)
        {
        }

Same methods

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