RealWorldDevelopers
5/23/2016 - 11:58 PM

Increase Max Size of Json String

Increase Max Size of Json String

 /// <summary>
        /// Large amount of data here.  This is an overload to increase the size of the JSON string
        /// </summary>
        protected override JsonResult Json(object data, string contentType, Encoding contentEncoding, JsonRequestBehavior behavior)
        {
            return new JsonResult
            {
                Data = data,
                ContentType = contentType,
                ContentEncoding = contentEncoding,
                JsonRequestBehavior = behavior,
                MaxJsonLength = Int32.MaxValue
            };
        }