Renci.SshNet.ForwardedPortDynamic
namespace Renci.SshNet
{
public class ForwardedPortDynamic : ForwardedPort
{
public string BoundHost { get; }
public uint BoundPort { get; }
public ForwardedPortDynamic(uint port);
public ForwardedPortDynamic(string host, uint port);
public void Dispose();
}
}