Linq to XML更新CDATA节点的方法

假如你的一个节点设为了CDATA类型,如果你用XElement的value="new value"的方法,你会发现<![CDATA这个标签不见了

所以我们就把方法改为value="<![CDATA"+new value+"]]>",结果却发现被html转码了

上网找到解决方法:

//Since you're interested in CDATA sections, you'll need to go a bit deeper in the API and work with nodes instead of values:

XElement article = updateArticle.Element("article");

if (null != article) {

	article.ReplaceNodes(new XCData(txtArticle.Text));

}

else {

	updateArticle.Add(new XElement("article", new XCData(txtArticle.Text)));

}

//Ion

你可能感兴趣的:(LINQ)