Sys.Serialization.JavaScriptSerializer deserialize Method
Converts a JSON string into an ECMAScript (JavaScript) object graph. This member is static and can be invoked without creating an instance of the class.
var result = JavaScriptSerializer.deserialize(value);
Parameters
Parameter |
Description |
---|---|
value |
The JSON string to deserialize. |
Remarks
The deserialize method converts a JSON string into a JavaScript object graph by using the JavaScript eval function.
Note
This method preprocesses embedded date values to make them usable by the eval function.
See Also
Reference
Sys.Net.WebRequestManager Class