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