public static new DebugMessage ReadFrom(BinaryReader reader) { var result = new DebugMessage(); result.Command = DebugCommand.ReadFrom(reader); return(result); }
public void Send(Model.DebugCommand command) { new Model.ClientMessage.DebugMessage(command).WriteTo(this.writer); this.writer.Flush(); }
public DebugMessage(DebugCommand command) { Command = command; }