XmlReader.CanReadValueChunk Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.