XmlReader.CanResolveEntity Property

Definition

Gets a value indicating whether this reader can parse and resolve entities.

public:
 virtual property bool CanResolveEntity { bool get(); };
public virtual bool CanResolveEntity { get; }
member this.CanResolveEntity : bool
Public Overridable ReadOnly Property CanResolveEntity As Boolean

Property Value

true if the reader can parse and resolve entities; otherwise, false.

Exceptions

An XmlReader method was called before a previous asynchronous operation finished. In this case, InvalidOperationException is thrown with the message "An asynchronous operation is already in progress."

Remarks

This property always returns false for implementations of XmlReader that do not support DTD information. In this case, calling ResolveEntity throws an exception.

Applies to