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

KeyboardInteractiveConnectionInfo() public method

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

Same methods

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