When I call XDocument.Save it is encoding my html <br/> tag, is there a way to prevent this?
XDocument xDoc = new XDocument(new XElement("desc","jon skeet <br/> knows, the <br/> answer"));
xDoc.Save(Server.MapPath("~/tempUploads/encodeTest.xml"));
OUTPUT IS:
<?xml version="1.0" encoding="utf-8"?>
<desc>jon skeet <br/> knows, the <br/> answer</desc>
OUTPUT I WOULD LIKE:
<?xml version="1.0" encoding="utf-8"?>
<desc>jon skeet <br/> knows, the <br/> answer</desc>
That’s expected behavior: You set the inner text of the
XElementto that string. It needs to be encoded, otherwise it would create multiple tags.As you actually want to have multiple tags, you need to create them. The easiest way would be to use
XElement.Parse: