Ejemplo n.º 1
0
        public JsonResult AbrirChatRecibe(int idChat, int idSession)
        {
            var           status   = objChatDAO.ActulizarStatus(idChat, idSession);
            List <ChatBO> PackChat = objChatDAO.VerChatRecibe(idChat).ToList();
            var           json     = Json(PackChat, JsonRequestBehavior.AllowGet);

            json.MaxJsonLength = Int32.MaxValue;
            return(json);
        }