ISocketFactory
                    interface ISocketFactory
                
                Represents a factory to create  Socket instances.
            
                using System.Net.Sockets;
namespace Renci.SshNet.Connection
{
    internal interface ISocketFactory
    {
        Socket Create(SocketType socketType, ProtocolType protocolType);
    }
}