Ejemplo n.º 1
0
 public DisconenctEventArgs(ClientSocket _client)
 {
     client = _client;
 }
Ejemplo n.º 2
0
 public ConnectEventArgs(ClientSocket _client)
 {
     client = _client;
 }
Ejemplo n.º 3
0
 public ReceiveDataEventArgs(ClientSocket _client, byte[] _ReceiveBytes)
 {
     client       = _client;
     receiveBytes = _ReceiveBytes;
 }