Example #1
0
 public static CommandReply DecodeReplyFully(CommandReply partialDecodedReply, OuterCommandCall commandCall, Byte[][] msg)
 {
     partialDecodedReply.Result = commandCall.Command.MessageWrapper.CreateReply(msg.Skip(3).ToArray());
     return(partialDecodedReply);
 }
 internal void NotifyCommandPerformed(CommandReply repl)
 {
     CommandPerformed?.Invoke(this, repl);
     m_wasPerformed = true;
 }