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

PortForwardEventArgs

Provides data for RequestReceived event.
using System; namespace Renci.SshNet.Common { public class PortForwardEventArgs : EventArgs { public string OriginatorHost { get; set; } public uint OriginatorPort { get; set; } internal PortForwardEventArgs(string host, uint port) { if (host == null) throw new ArgumentNullException("host"); port.ValidatePort("port"); OriginatorHost = host; OriginatorPort = port; } } }