System.Xml.XmlTextReader.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:

In the dnprdnext release, the recommended practice is to create System.Xml.XmlReader instances using the erload:System.Xml.XmlReader.Create method. This allows you to take full advantage of the new features introduced in this release. For more information, see Creating XML Readers.

This property can be changed on the fly and takes effect after the next XmlTextReader.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: 2.0.0.0, 4.0.0.0
Since: .NET 2.0