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