Hi all,
please tell me any body above question,
1.I will retrieve particular entity in lead entity in onlineMSCRM365
2.I will retrieve onely firstname, company name ,phoneno
3.how to convert json format to xml format
4.please provide any body code
Thanks
venkateswarlu.p
*This post is locked for comments
You can use the JsonConvert class which contains these methods.
// To convert an XML node contained in string xml into a JSON string
XmlDocument doc = new XmlDocument();
doc.LoadXml(xml);
string jsonText = JsonConvert.SerializeXmlNode(doc);
// To convert JSON text contained in string json into an XML node
XmlDocument doc = JsonConvert.DeserializeXmlNode(json);
Also, check this link out:
www.newtonsoft.com/.../ConvertingJSONandXML.htm
Hope this helps.
Refer this article for this
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156