예제 #1
0
 public TcpDatagramReceivedEventArgs(TCPClientState state, T datagram)
 {
     this.State    = state;
     this.Datagram = datagram;
 }
예제 #2
0
 public TcpClientDisconnectedEventArgs(TCPClientState state)
 {
     this.State = state;
 }
예제 #3
0
 public DatagramReceivedEventArgs(TCPClientState state, byte[] datagram)
     : base(state)
 {
     _datagram = datagram;
 }
예제 #4
0
 public TCPEventArgs(TCPClientState state, string msg)
 {
     this._state = state;
     this._msg   = msg;
     IsHandled   = false;
 }
예제 #5
0
 public TCPEventArgs(TCPClientState state)
 {
     this._state = state;
     IsHandled   = false;
 }
예제 #6
0
 private void RaiseOtherException(TCPClientState state)
 {
     RaiseOtherException(state, "");
 }