EntityHandling

EntityHandlingCF 1.0, serializable

System.Xml (system.xml.dll)enum

This enumeration defines how entities are expanded. ExpandCharEntities expands only character entities, returning the entity text, while general entities are returned as nodes. ExpandEntities expands all entities; this is the default.

public enum EntityHandling {
   ExpandEntities = 1,
   ExpandCharEntities = 2
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparable, System.IFormattable, System.IConvertible) EntityHandling

Returned By

XmlValidatingReader.EntityHandling

Passed To

XmlValidatingReader.EntityHandling

Figure 44-1. XmlNode and related types
figs/csn2_4401.gif


    Part II: Programming with the .NET Framework
    Part IV: API Quick Reference
    Chapter 26. System