XmlSerializationWriter.EscapeName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the EncodeName(String) method is used to write valid XML.
This API supports the product infrastructure and is not intended to be used directly from your code.
protected:
property bool EscapeName { bool get(); void set(bool value); };
protected bool EscapeName { get; set; }
member this.EscapeName : bool with get, set
Protected Property EscapeName As Boolean
Property Value
true
if the FromXmlQualifiedName(XmlQualifiedName) method returns an encoded name; otherwise, false
.
Remarks
The EncodeName method writes valid XML from invalid sources. For example, the ColumnName property of the DataColumn class can contain spaces, which are invalid as XML. The DecodeName method reads the encoded XML and restores it to the original value. However, the Read method of the XmlSchema cannot read such encoded XML. In that case, set the EscapeName property to false
to disable the encoding of the XML.