internal void SendResponse() { if (Response != null && Response.Id > 0 && Session != null && Session.GetConnection() != null) { Session.GetConnection().SendData(Response.GetBytes()); if (Session.PacketSaverEnable) { Logging.LogPacketData("UserName: "******": " + Response.ToString()); } } }
internal void SendResponse() { if (Response != null) { if (Response.Id > 0) { if (Session.GetConnection() != null) { Session.GetConnection().SendData(Response.GetBytes()); } } } }
internal void appendResponse(ServerMessage message) { appendBytes(message.GetBytes()); }