using System.Net.Sockets;
namespace eSuite.API.HealthChecks;
///
/// Interface for for a factory class that creates Sockets
///
public interface ISocketFactory
{
///
/// Creates a socket using the parameters provided.
///
///
///
///
///
ISocketFacade CreateSocket(AddressFamily endPointAddressFamily, SocketType stream, ProtocolType tcp);
}