2 writes to writer
System.Xml (2)
System\Xml\Core\XmlEncodedRawTextWriter.cs (2)
137this.writer = writer; 697writer = null;
11 references to writer
System.Xml (11)
System\Xml\Core\XmlEncodedRawTextWriter.cs (7)
686else if ( writer != null ) { 688writer.Flush(); 693writer.Close(); 713else if ( writer != null ) { 714writer.Flush(); 728Debug.Assert( stream != null || writer != null ); 750writer.Write( bufChars, 1, bufPos - 1 );
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (4)
485else if ( writer != null ) { 486await writer.FlushAsync().ConfigureAwait(false); 500Debug.Assert( stream != null || writer != null ); 522await writer.WriteAsync( bufChars, 1, bufPos - 1 ).ConfigureAwait(false);