I would like to serialize some .NET objects with circular references into JSON that is compatible and can be parsed and resolved with the Dojo library dojox.json.ref. This library allows serialization of the following:
var obj = {};
obj.me = obj;
like this:
var jsonWithCircularRef = dojox.json.ref.toJson(obj);
obj = dojox.json.ref.fromJson(jsonWithCircularRef);
obj.me == obj // -> true, the reproduced object will
//have a property named "me" with a value of itself.
The JSON (with references intact) would look like this:
{"id":"1","me":{"$ref":"1"}}
What I want is code or a library that allows me to, on the server side using C#, convert objects with circular references to JSON (with references intact, as above) that can be parsed by the dojox.json.ref library. Is there anything already out there?