Esempio n. 1
0
 private void EventService_ClientLostEvent(SubscribeArg arg)
 {
     ClientLost?.Invoke(this, new DataEventArgs(arg.Username));
 }
Esempio n. 2
0
 private bool Equals(ClientLost other)
 {
     return(Equals(BarrierData, other.BarrierData) && Equals(Client, other.Client));
 }
Esempio n. 3
0
 private void SessionDiedHandler(NetworkInterface sender, int sessionID)
 {
     DeadSessions.Add(sessionID);
     ClientLost?.Invoke(this, EventArgs.Empty);
 }