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

PasswordConnectionInfo() public method

Initializes a new instance of the PasswordConnectionInfo class.
is null. is invalid, or is null or contains only whitespace characters. is not within and .
public PasswordConnectionInfo ( string host, int port, string username, byte password ) : System
host string Connection host.
port int Connection port.
username string Connection username.
password byte Connection password.
return System
        public PasswordConnectionInfo(string host, int port, string username, byte[] password)
            : this(host, port, username, password, ProxyTypes.None, string.Empty, 0, string.Empty, string.Empty)
        {
        }

Same methods

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
PasswordConnectionInfo::PasswordConnectionInfo ( string host, string username, string password, ProxyTypes proxyType, string proxyHost, int proxyPort, string proxyUsername, string proxyPassword ) : System