4 overrides of IsFull
System.Private.Xml (4)
System\Xml\Base64Decoder.cs (1)
32internal override bool IsFull
System\Xml\BinHexDecoder.cs (1)
32internal override bool IsFull
System\Xml\Core\IncrementalReadDecoders.cs (2)
28internal override bool IsFull { get { return false; } } 53internal override bool IsFull
13 references to IsFull
System.Private.Xml (13)
System\Xml\Core\ReadContentAsBinaryHelper.cs (2)
351if (_decoder.IsFull) 370if (_decoder.IsFull)
System\Xml\Core\ReadContentAsBinaryHelperAsync.cs (2)
273if (_decoder.IsFull) 292if (_decoder.IsFull)
System\Xml\Core\XmlTextReaderImpl.cs (6)
8202if (_incReadDecoder.IsFull) 8511Debug.Assert(count == charsParsed || _incReadDecoder.IsFull, "Check if decoded consumed all characters unless it's full."); 8513if (_incReadDecoder.IsFull) 9376if (_incReadDecoder.IsFull) 9391while (!_incReadDecoder.IsFull && !endOfValue) 9414if (_incReadDecoder.IsFull)
System\Xml\Core\XmlTextReaderImplAsync.cs (3)
5384if (_incReadDecoder.IsFull) 5398while (!_incReadDecoder.IsFull && !endOfValue) 5425if (_incReadDecoder.IsFull)