Beispiel #1
0
 public JDQResponse(JDQRequestType reqType, byte[] recvBytes)
 {
     this._buff = new byte[recvBytes.Length];
     Array.Copy(recvBytes, _buff, recvBytes.Length);
     this._type = reqType;
     Error = SocketError.Success;
     ExtError = "";
 }
Beispiel #2
0
 public JDQRequest(byte devId, JDQRequestType type)
 {
     this.DevId = devId;
     this._type = type;
 }