<PackageReference Include="SSH.NET" Version="2020.0.2" />

Renci.SshNet.ForwardedPortLocal

Provides functionality for local port forwarding
namespace Renci.SshNet { public class ForwardedPortLocal : ForwardedPort, IDisposable { public string BoundHost { get; } public uint BoundPort { get; } public string Host { get; } public uint Port { get; } public ForwardedPortLocal(uint boundPort, string host, uint port); public ForwardedPortLocal(string boundHost, string host, uint port); public ForwardedPortLocal(string boundHost, uint boundPort, string host, uint port); public void Dispose(); } }