XmlTextReader.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 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.