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);
}
}