I just used the XmlWriter to create some XML to send back in an HTTP response. How would you create a JSON string. I assume you would just use a stringbuilder to build the JSON string and them format your response as JSON?
|
feedback
|
|
You could use the JavaScriptSerializer class, check this article to build an useful extension method. Code from article:
Usage:
| |||||||||||||||
feedback
|
|
This library is very good for JSON from C# | |||||||||||
feedback
|
|
Take a look at http://www.codeplex.com/json/ for the json-net.aspx project. Why re-invent the wheel? | |||
feedback
|
|
If you can't or don't want to use the two built-in JSON serializers (JavaScriptSerializer and DataContractJsonSerializer) you can try the JsonExSerializer library - I use it in a number of projects and works quite well. | |||||||
feedback
|
|
This code snippet uses the DataContractJsonSerializer from System.Runtime.Serialization.Json in .NET 3.5.
| |||||
feedback
|
|
You can also try my ServiceStack JsonSerializer it's the fastest .NET JSON serializer at the moment. It supports serializing DataContracts, any POCO Type, Interfaces, Late-bound objects including anonymous types, etc. Basic Example
Note: Only use Microsofts JavaScriptSerializer if performance is not important to you as I've had to leave it out of my benchmarks since its up to 40x-100x slower than the other JSON serializers. | ||||
|
feedback
|
|
If you're trying to create a web service to serve data over JSON to a web page, consider using the ASP.NET Ajax toolkit: http://www.asp.net/learn/ajax/tutorial-05-cs.aspx It will automatically convert your objects served over a webservice to json, and create the proxy class that you can use to connect to it. | |||
feedback
|
|
The DataContractJSONSerializer will do everything for you with the same easy as the XMLSerializer. Its trivial to use this in a web app. If you are using WCF, you can specify its use with an attribute. The DataContractSerializer family is also very fast. | |||
|
feedback
|