string json = "{"Animal":{"id":"123","verified":true}}"
        XmlDocument doc = (XmlDocument)JsonConvert.DeserializeXmlNode(json);
        returnXml = doc.ToString();
Why does "ReturnXml" return the following text "System.Xml.XmlDocument" and not the XML output in string format?
 
     
     
    