3 writes to textReader
System.Xml (3)
System\Xml\Core\XmlTextReaderImpl.cs (1)
2686ps.textReader = input;
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
909ps.textReader = input;
System\Xml\Core\XmlTextReaderImplHelpers.cs (1)
88textReader = null;
9 references to textReader
System.Xml (9)
System\Xml\Core\XmlTextReaderImpl.cs (4)
2602Debug.Assert( ps.charPos == 0 && ps.charsUsed == 0 && ps.textReader == null ); 2712Debug.Assert( ps.stream == null && ps.textReader == null ); 3174else if ( ps.textReader != null ) { 3176charsRead = ps.textReader.Read( ps.chars, ps.charsUsed, ps.chars.Length - ps.charsUsed - 1 );
System\Xml\Core\XmlTextReaderImplAsync.cs (3)
828Debug.Assert( ps.charPos == 0 && ps.charsUsed == 0 && ps.textReader == null ); 1084else if ( ps.textReader != null ) { 1086charsRead = await ps.textReader.ReadAsync( ps.chars, ps.charsUsed, ps.chars.Length - ps.charsUsed - 1 ).ConfigureAwait(false);
System\Xml\Core\XmlTextReaderImplHelpers.cs (2)
106else if ( textReader != null ) { 107textReader.Close();