public bool ServerDisconnect(int connectionId)
 {
     return(server != null?server.ServerDisconnect(connectionId) : false);
 }
示例#2
0
 public bool ServerDisconnect(int connectionId)
 {
     return(server != null && server.ServerDisconnect(connectionId));
 }