XmlTextReader.CanReadValueChunk Property

Definition

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

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

Property Value

true if the XmlTextReader implements the ReadValueChunk(Char[], Int32, Int32) method; otherwise false. The XmlTextReader class always returns false.

Remarks

Note

Starting with the .NET Framework 2.0, we recommend that you create XmlReader instances by using the XmlReader.Create method to take advantage of new functionality.

The XmlTextReader throws a NotSupportedException if the ReadValueChunk method is called.

Applies to

See also