Unplanned
Last Updated: 27 Feb 2024 17:41 by n/a
n/a
Created on: 27 Feb 2024 17:41
Category: UI for ASP.NET Core
Type: Feature Request
2
DefaultJavaScriptSerializer depends on Newtonsoft.Json

At this stage, the Serialize() method depends on Newtonsoft.Json:

using Newtonsoft.Json;

namespace Kendo.Mvc.Infrastructure
{
    public class DefaultJavaScriptSerializer : IJavaScriptSerializer
    {
        public string Serialize(object value)
        {
            return JsonConvert.SerializeObject(value).Replace(@"<", @"\u003c").Replace(@">", @"\u003e");
        }
    }
}

Is it possible to remove the dependency and use the System.Text.Json serializer instead?

0 comments