示例#1
0
 public IpcMessage(DiagnosticsServerCommandSet commandSet, byte commandId, byte[] payload = null)
     : this(new IpcHeader(commandSet, commandId), payload)
 {
 }
示例#2
0
 public IpcHeader(DiagnosticsServerCommandSet commandSet, byte commandId)
 {
     CommandSet = (byte)commandSet;
     CommandId  = commandId;
 }
示例#3
0
 internal IpcMessage(DiagnosticsServerCommandSet commandSet, byte commandId, byte[] payload = null)
 {
     Header  = new IpcHeader(commandSet, commandId);
     Payload = payload;
 }