EntityHandling Enumeration (System.Xml)

Switch View :
ScriptFree
.NET Framework Class Library
EntityHandling Enumeration

Specifies how the XmlTextReader or XmlValidatingReader handle entities.

Namespace:  System.Xml
Assembly:  System.Xml (in System.Xml.dll)
Syntax

Visual Basic
Public Enumeration EntityHandling
C#
public enum EntityHandling
Visual C++
public enum class EntityHandling
F#
type EntityHandling
Members

Member name Description
Supported by the XNA Framework ExpandEntities Expands all entities and returns the expanded nodes.

EntityReference nodes are not returned. The entity text is expanded in place of the entity references.

Supported by the XNA Framework ExpandCharEntities Expands character entities and returns general entities as EntityReference nodes.

You must call ResolveEntity to see what the general entities expand to. This enables you to optimize entity handling by only expanding the entity the first time it is used.

When set to ExpandCharEntities, a reader call to the GetAttribute method expands all entities (both general and character entities).

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference