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

ISubsystemSession

Base interface for SSH subsystem implementations.
using System; using System.Threading; namespace Renci.SshNet { internal interface ISubsystemSession : IDisposable { bool IsOpen { get; } void Connect(); void Disconnect(); void WaitOnHandle(WaitHandle waitHandle, TimeSpan operationTimeout); } }