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

PasswordConnectionInfo() public method

Initializes a new instance of the PasswordConnectionInfo class.
public PasswordConnectionInfo ( string host, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword ) : System
host string Connection host.
username string Connection username.
password string Connection password.
proxyType ProxyTypes Type of the proxy.
proxyHost string The proxy host.
proxyPort int The proxy port.
proxyUsername string The proxy username.
proxyPassword string The proxy password.
return System
        public PasswordConnectionInfo(string host, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword)
            : this(host, DefaultPort, username, Encoding.UTF8.GetBytes(password), proxyType, proxyHost, proxyPort, proxyUsername, proxyPassword)
        {
        }

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 ) : 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