Exemple #1
0
 ///
 /// 构造
 ///
 /// 数据
 /// 问题套接字
 ///
 public ErrorServerEventArgs(Exception Error, ClientContext client, TCPErrorType _errorType, string _message)
 {
     this.client = client;
     error       = Error;
     errorType   = _errorType;
     message     = _message;
 }
Exemple #2
0
 public ErrorServerEventArgs(Exception Error, TCPErrorType _errorType)
 {
     this.client = null;
     error       = Error;
     errorType   = _errorType;
 }