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

ForwardedPortRemote() public method

Initializes a new instance of the ForwardedPortRemote class.
public ForwardedPortRemote ( string boundHost, uint boundPort, string host, uint port ) : System
boundHost string The bound host.
boundPort uint The bound port.
host string The host.
port uint The port.
return System
        public ForwardedPortRemote(string boundHost, uint boundPort, string host, uint port)
            : this(DnsAbstraction.GetHostAddresses(boundHost)[0],
                   boundPort,
                   DnsAbstraction.GetHostAddresses(host)[0],
                   port)
        {
        }

Same methods

ForwardedPortRemote::ForwardedPortRemote ( IPAddress boundHostAddress, uint boundPort, IPAddress hostAddress, uint port ) : System
ForwardedPortRemote::ForwardedPortRemote ( uint boundPort, string host, uint port ) : System