SToolkit.SocketNetwork
1.0.0
Высокопроизводительный, мощный асинхронный клиентсервер сокетов TCPUDP.
Пакет Nuget
Или консоль Nuget
Install-Package SToolkit.SocketNetwork
№1 №2
Включая
using SToolkit . SocketNetwork ;
Создать сервер, TCP
SocketServer TcpServer = new SocketServer ( NetworkType . Tcp , IPAddress . Loopback , 5400 ) ;
или UDP
SocketServer UdpServer = new SocketServer ( NetworkType . Udp , IPAddress . Loopback , 5401 ) ;
Затем привяжите события
Запустить сервер
TcpServer . Start ( ) ;
UdpServer . Start ( ) ;
Все функции сервера
SocketServer ( NetworkType type , IPAddress address , int port ) ;
void Dispose ( ) ;
void Start ( ) ;
void Stop ( ) ;
Все переменные сервера
string Uid ;
IPAddress IPAddress ;
int Port ;
List < ClientConnection > ConnectedClients ;
int LoopInterval ;
int Backlog ;
NetworkType ServerType ;
bool UDPClientManage ;
int UDPDataInterval ;
Включая
using SToolkit . SocketNetwork ;
Создать клиент, TCP
SocketClient TcpClient = new SocketClient ( NetworkType . Tcp ) ;
или UDP
SocketClient UdpClient = new SocketClient ( NetworkType . Udp ) ;
Привязка событий
Подключиться к удаленному серверу
TcpClient . Connect ( IPAddress . Loopback , 5400 ) ;
UdpClient . Connect ( IPAddress . Loopback , 5401 ) ;
Все функции клиента
SocketClient ( NetworkType type ) ;
void Dispose ( ) ;
void Connect ( IPAddress address , int port ) ;
void Connect ( IPEndPoint point ) ;
void Disconnect ( ) ;
Все переменные клиента
NetworkType ClientType ;
int LoopInterval ;
int UDPDataInterval ;