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