Пример #1
0
        public JsonResult AbrirChat(int idChat)
        {
            List <ChatBO> PackUser = objChatDAO.AbrirChat(idChat).ToList();
            var           json     = Json(PackUser, JsonRequestBehavior.AllowGet);

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