XmlTextReader.ResolveEntity Method (System.Xml)

Cambiar vista:
Sin script
XmlTextReader.ResolveEntity Method
Resolves the entity reference for EntityReference nodes.

Namespace: System.Xml
Assembly: System.Xml (in system.xml.dll)

Syntax

Visual Basic (Declaration)
Public Overrides Sub ResolveEntity
Visual Basic (Usage)
Dim instance As XmlTextReader

instance.ResolveEntity
C#
public override void ResolveEntity ()
C++
public:
virtual void ResolveEntity () override
J#
public void ResolveEntity ()
JScript
public override function ResolveEntity ()
XAML
Not applicable.
Remarks

NoteNote:

In the Microsoft .NET Framework version 2.0 release, the recommended practice is to create XmlReader instances using the 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.

If the reader is positioned on an EntityReference node (XmlNodeType.EntityReference), if Read is called after calling this method, the entity replacement text is parsed. When the entity replacement text is finished, an EndEntity node is returned to close the entity reference scope.

NoteNote:

After calling this method, if the entity is part of an attribute value, you must call ReadAttributeValue to step into the entity.

Platforms

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

Version Information

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 2.0, 1.0

XNA Framework

Supported in: 1.0
See Also