Renci.SshNet.Connection.IConnector
interface IConnector
Represents a means to connect to a SSH endpoint.
namespace Renci.SshNet.Connection
{
internal interface IConnector
{
Socket Connect(IConnectionInfo connectionInfo);
Task<Socket> ConnectAsync(IConnectionInfo connectionInfo, CancellationToken cancellationToken);
}
}