/* errorMsg  는 NetErrorMsg 의 멤버이다. */
 public NetworkErrorEventArgs(int id, NetErrorMsg errorMsg, String errorStr = "")
     : base()
 {
     this.id       = id;
     error         = errorMsg;
     this.errorStr = errorStr;
 }
Exemplo n.º 2
0
 /* errorMsg  는 NetErrorMsg 의 멤버이다. */
 public NetworkErrorEventArgs(int id, NetErrorMsg errorMsg)
     : base()
 {
     this.id = id;
     error   = errorMsg;
 }