public IpcHeader(DiagnosticServerCommandSet commandSet, byte commandId) { CommandSet = (byte)commandSet; CommandId = commandId; }
internal IpcMessage(DiagnosticServerCommandSet commandSet, byte commandId, byte[] payload = null) { Header = new IpcHeader(commandSet, commandId); Payload = payload; }