You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classSshClient{// Starts a local server that accepts connections on bindEndpoint and forwards through the SSH connection to 'host:port'.// The forward is stopped if the connection is closed, or the returned instance gets Disposed.// BindEndpoint can be an IPEndPoint or a UnixDomainSocketEndPoint.Task<LocalForward>StartForwardTcpAsync(EndPointbindEndpoint,stringremoteHost,intremotePort,CancellationTokencancellationToken);Task<LocalForward>StartForwardUnixAsync(EndPointbindEndpoint,stringremotePath,CancellationTokencancellationToken);}classLocalForward:IDisposable{EndPointServerEndPoint{get;}}
The text was updated successfully, but these errors were encountered:
API proposal:
The text was updated successfully, but these errors were encountered: