如何使用XmlSerializer将字符串序列化为CDATA?是否可以通过某种属性将字符串序列化为使用.Net XmlSerializer的CDATA?
3 回答
蛊毒传说
TA贡献1895条经验 获得超3个赞
[XmlRoot("root")]public class Sample1Xml{
internal Sample1Xml()
{
}
[XmlElement("node")]
public NodeType Node { get; set; }
#region Nested type: NodeType
public class NodeType
{
[XmlAttribute("attr1")]
public string Attr1 { get; set; }
[XmlAttribute("attr2")]
public string Attr2 { get; set; }
[XmlIgnore]
public string Content { get; set; }
[XmlText]
public XmlNode[] CDataContent
{
get {
var dummy = new XmlDocument();
return new XmlNode[] {dummy.CreateCDataSection(Content)};
}
set
{
if (value == null)
{
Content = null;
return;
}
if (value.Length != 1)
{
throw new InvalidOperationException(
String.Format(
"Invalid array length {0}", value.Length));
}
Content = value[0].Value;
}
}
}
#endregion}- 3 回答
- 0 关注
- 1431 浏览
添加回答
举报
0/150
提交
取消
