SToolkit.SocketNetwork
1.0.0
高性能、强大、异步 TCPUDP 套接字客户端服务器。
努吉特包
或者 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 ;