XmlSerializationWriter.EscapeName Property

Definition

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.

Applies to