XmlReader.CanReadValueChunk Property

Definition

Gets a value indicating whether the XmlReader implements the ReadValueChunk(Char[], Int32, Int32) method.

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

Property Value

true if the XmlReader implements the ReadValueChunk(Char[], Int32, Int32) method; 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

Text parsing XmlReader objects that were created from the static Create method always return true. All other Microsoft .NET Framework implementations of the XmlReader class, including the XmlTextReader class, return false.

If this property returns false a NotSupportedException is returned when the ReadValueChunk method is called.

Applies to