Prevent Character Escape When Calling xmlwriter.xwriter.WriteElementString, C%
- by Ibrar Afzal
I have a string
<entry key="Provider">Comcast Cable Communications, Inc.</entry>
<entry key="Challenged">No</entry>
I need to call the
using xmlwriter..WriteElementString I need to what the string mentioned earler. Problem here is the xwriter.WriteElementString will escape all "<" and "" symbols with < and >. I have checked MSDN to see if there is a way to disable it, but have not found an answer.
Is there a way to disable the auto-escape features?