Avoiding Character Escape When Calling XmlWriter.WriteElementString
I have a line:
<entry key="Provider">Comcast Cable Communications, Inc.</entry>
<entry key="Challenged">No</entry>
I want to print this line with XmlWriter.WriteElementString(). The problem here is that it XmlWriter.WriteElementString()will come out of all characters <and >with <and >. I checked MSDN to find out if there is a way to disable this, but did not find an answer.
Is there a way to turn off auto-escaping that happens?
XML, ? XML XML? - :
<outer>
<entry key="Provider">Comcast Cable Communications, Inc.</entry>
<entry key="Challenged">No</entry>
</outer>
WriteElementString. XmlWriter.WriteNode.