Exemple #1
0
 private void tcprece_TcpreceiverEventArrive(Server.Tcpreceiver Uid, string Receive)
 {
     if (ServerEventArrive != null)
     {
         ServerEventArrive(Uid, Receive);
     }
     //throw new NotImplementedException();
 }
Exemple #2
0
 void tcprece_TcpreceiverEventArriveByte(Server.Tcpreceiver Uid, byte[] data)
 {
     if (ServerEventArriveByte != null)
     {
         ServerEventArriveByte(Uid, data);
     }
     //throw new NotImplementedException();
 }