示例#1
0
 public AsyncEventArgs(string msg, TCPClientState state)
 {
     this._msg   = msg;
     this._state = state;
     IsHandled   = false;
 }
示例#2
0
 public AsyncEventArgs(TCPClientState state)
 {
     this._state = state;
     IsHandled   = false;
 }