Allows communication between the server and client through a Socket.
Inheritance: System.Entity
Ejemplo n.º 1
0
 public NetDisconnectEvent(NetCom communicator, Exception e)
     : this(communicator)
 {
     Exception = e;
 }
Ejemplo n.º 2
0
 public NetDisconnectEvent(NetCom communicator)
     : base(communicator)
 {
 }
Ejemplo n.º 3
0
 public NetEvent(NetCom communicator)
     : base(communicator)
 {
 }
Ejemplo n.º 4
0
 public NetIncomingEvent(NetCom communicator, Event incomingEvent)
     : base(communicator)
 {
     ReceivedEvent = incomingEvent;
 }
Ejemplo n.º 5
0
 public NetConnectEvent(NetCom communicator, long syncTime)
     : base(communicator)
 {
     SyncTime = syncTime;
 }