IProtocolVersionExchange
interface IProtocolVersionExchange
using System;
using System.Net.Sockets;
namespace Renci.SshNet.Connection
{
internal interface IProtocolVersionExchange
{
SshIdentification Start(string clientVersion, Socket socket, TimeSpan timeout);
}
}