Exemplo n.º 1
0
 public DCO(byte[] asduBytes, int offset)
 {
     this.dcs = (asduBytes[offset] & 0x03);
     this.qoc = new QOC(asduBytes, offset);
 }
Exemplo n.º 2
0
 public SCO(byte[] asduBytes, int offset)
 {
     this.scs = (asduBytes[offset] & 0x01) == 0x01;
     this.qoc = new QOC(asduBytes, offset);
 }