Replace WCF inline JavascriptSerializer with Newtonsoft Json.Net json serializer

Is there a way to replace the WCF utility application with the built-in JavascriptSerializer using the Newtonsoft Json.Net json serializer?

+7
source share
1 answer

WCF does not use JavascriptSerializer . It uses a DataContractJsonSerializer . And yes, you can replace it with Json.NET by writing a custom post format , as shown in the post blog post .

+13
source

All Articles