コード例 #1
0
 public AsyncEventArgs(TCPClientState state)
 {
     this._state = state;
     IsHandled   = false;
 }
コード例 #2
0
 public AsyncEventArgs(string msg, TCPClientState state)
 {
     this._msg   = msg;
     this._state = state;
     IsHandled   = false;
 }
コード例 #3
0
 private void RaiseOtherException(TCPClientState state)
 {
     RaiseOtherException(state, "");
 }