< ;![CDATA[< ;h3> ;Service Job 1561245< ;/h3> ;
The solution is to update the property type from string to XmlCDataSection. You can leave the field type to string (so that's descriptionField in the below example), but the get and set of the property needs to look something like this:
get
{
XmlDocument xmlDocument = new XmlDocument();
return xmlDocument.CreateCDataSection(descriptionField);
}
set
{
descriptionField = value.Value;
}
No comments:
Post a Comment