我问的问题基本上与本文中的问题相同:How to Get XML Node from XDocument,但尝试在一行代码中一次性返回CData值。我试图让以下函数返回正常工作:
private string RetrieveFormattedString(string controlId)
{
return template.Descendants("Template")
.Where(templateNode => templateNode.Value == controlId)
.Where(tmp => tmp.Name == "Format").Select(y => y.Value).ToString();
}
我在下面有以下XML:
<?xml version="1.0" encoding="utf-8" ?>
<Templates>
<Template>
<Name>NodeName1</Name>
<Parameter Type="TextBox" Name="conferenceID">{__otcConferenceID__}</Parameter>
<Parameter Type="TextBox" Name="conferenceCode">{__otcConferenceCode__}</Parameter>
<Format>
<![CDATA[ <b>NodeName1</b><br /> <table><tr><td>iPhone</td><td>{__otcConferenceID__},#,{__otcConferenceCode__}</td></tr></table>]]>
</Format>
</Template>
<Template>
<Name>NodeName2</Name>
<Parameter Type="TextBox" Name="conferenceID">{__otcConferenceID__}</Parameter>
<Parameter Type="TextBox" Name="conferenceCode">{__otcConferenceCode__}</Parameter>
<Format>
<![CDATA[ <b>NodeName2</b><br /> <table><tr><td>iPhone</td><td>{__otcConferenceID__},#,{__otcConferenceCode__}</td></tr></table>]]>
</Format>
</Template>
</Templates>
我知道我这样做不正确,并且希望能够让更多的人看到它。
答案 0 :(得分:4)
private string RetrieveFormattedString(XDocument xDoc, string nodeName)
{
return xDoc.Descendants("Template")
.First(t => t.Element("Name").Value == nodeName)
.Element("Format").Value;
}