OnDisconnection() 공개 메소드

public OnDisconnection ( Session session ) : void
session Session
리턴 void
예제 #1
0
 public void OnDisconnection(Session session)
 {
     if (Connected)
     {
         Connected = false;
         if (!Handler.Peers.Remove(IdStr))
         {
             Logger.FATAL("Client {0} seems already disconnected!", Id);
         }
         Handler.OnDisconnection(session);
     }
 }