public ControlResponse(PacketBoundryFlagEnum pbf, GroupIdentifierEnum groupIdentifier, byte opcodeIdentifier) : base(PacketTypeEnum.ControlResponse, pbf, groupIdentifier, opcodeIdentifier) { if (payLoad == null || getPLL() == 0) { payLoad = new byte[1]; } }
public ControlPacket(PacketBoundryFlagEnum pbf, GroupIdentifierEnum groupIdentifier, byte opcodeIdentifier) : base(PacketTypeEnum.ControlCommand, pbf, (byte)groupIdentifier) { this.opcodeIdentifier = opcodeIdentifier; }
public NotificationPacket(PacketBoundryFlagEnum pbf, GroupIdentifierEnum groupIdentifier, byte opcodeIdentifier) : base(PacketTypeEnum.ControlNotification, pbf, (byte)groupIdentifier) { this.OpcodeIdentifier = opcodeIdentifier; }