Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. enter code here
  2. if (xmlData.Descendants(ns3 + "ShortDescriptionHtml").Any())
  3. {
  4. xmlData.Descendants(ns3 + "ShortDescriptionHtml").SingleOrDefault().Value = desc.ToString();
  5. cdo.Content = doc.ToString();
  6. }
  7.  
  8. if (xmlData.Descendants(ns3 + "ShortDescriptionHtmlRAW").Any())
  9. {
  10. xmlData.Descendants(ns3 + "ShortDescriptionHtmlRAW").SingleOrDefault().Value = ShortdescRAW;
  11. cdo.Content = doc.ToString();
  12. }
  13. // cdo.ser
  14. _client.Update(cdo, null);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement