4 overrides of IsFull
System.Xml (4)
System\Xml\Base64Decoder.cs (1)
39internal override bool IsFull {
System\Xml\BinHexDecoder.cs (1)
33internal override bool IsFull {
System\Xml\Core\IncrementalReadDecoders.cs (2)
30internal override bool IsFull { get { return false; } } 55internal override bool IsFull {
13 references to IsFull
System.Xml (13)
System\Xml\Core\ReadContentAsBinaryHelper.cs (2)
344if ( decoder.IsFull ) { 360if ( decoder.IsFull ) {
System\Xml\Core\ReadContentAsBinaryHelperAsync.cs (2)
268if ( decoder.IsFull ) { 284if ( decoder.IsFull ) {
System\Xml\Core\XmlTextReaderImpl.cs (6)
7367if ( incReadDecoder.IsFull ) { 7639Debug.Assert( count == charsParsed || incReadDecoder.IsFull, "Check if decoded consumed all characters unless it's full." ); 7641if ( incReadDecoder.IsFull ) { 8365if ( incReadDecoder.IsFull ) { 8377while ( !incReadDecoder.IsFull && !endOfValue ) { 8396if ( incReadDecoder.IsFull ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (3)
5000if ( incReadDecoder.IsFull ) { 5012while ( !incReadDecoder.IsFull && !endOfValue ) { 5037if ( incReadDecoder.IsFull ) {