System.Xml.XmlValidatingReader.EntityHandling Property

Gets or sets a value that specifies how the reader handles entities.

Syntax

public EntityHandling EntityHandling { get; set; }

Value

Documentation for this section has not yet been entered.

Remarks

Note:

The System.Xml.XmlValidatingReader class is obsolete in dnprdnext. You can create a validating System.Xml.XmlReader instance by using the System.Xml.XmlReaderSettings class and the erload:System.Xml.XmlReader.Create method. For more information, see Validating XML Data with XmlReader.

This property can be changed and takes effect after the next XmlValidatingReader.Read call.

When EntityHandling is set to ExpandCharEntities, attribute values are only partially normalized. The reader normalizes each individual text node independently from the content of adjacent entity reference nodes.

To illustrate the difference between the entity handling modes consider the following XML:

Example

 <!DOCTYPE doc [<!ENTITY num "123">]>
  <doc> &#65; &num; </doc>

When EntityHandling is set to ExpandEntities the "doc" element node contains one text node with the expanded entity text:

1

Text

A 123

When EntityHandling is set to ExpandCharEntites, and XmlTextReader.WhitespaceHandling is set to Significant or All, the "doc" element expands the character entity and returns the general entity as a node:

1

Text

A

1

EntityReference

num

1

SignificantWhitespace

Requirements

Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0