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