internal void NotifyCommandPerformed(CommandReply repl)
 {
     CommandPerformed?.Invoke(this, repl);
     m_wasPerformed = true;
 }
Esempio n. 2
0
 public static CommandReply DecodeReplyFully(CommandReply partialDecodedReply, OuterCommandCall commandCall, IList <Byte[]> msg)
 {
     partialDecodedReply.Result = commandCall.Command.MessageWrapper.CreateReply(message: msg.Skip(3).ToArray());
     return(partialDecodedReply);
 }