Showing posts with label XML to JSON. Show all posts
Showing posts with label XML to JSON. Show all posts

Friday, July 18, 2014

JSON deserializing and serializing

Convert XML to JSON

http://www.utilities-online.info/xmltojson/

JSON convert between XMLNode and json

XmlNote myXmlNode = JsonConvert.DeserializeXmlNode(myJsonString);
// or .DeserilizeXmlNode(myJsonString, "root");
// if myJsonString does not have a root
string jsonString = JsonConvert.SerializeXmlNode(myXmlNode);

SDK documentation
http://james.newtonking.com/json/help/index.html