public AsyncEventArgs(TCPClientState state)
 {
     this._state = state;
     IsHandled   = false;
 }
 public AsyncEventArgs(string msg, TCPClientState state)
 {
     this._msg   = msg;
     this._state = state;
     IsHandled   = false;
 }
 private void RaiseOtherException(TCPClientState state)
 {
     RaiseOtherException(state, "");
 }