2 writes to stream
System.Xml (2)
System\Xml\Core\XmlUtf8RawTextWriter.cs (2)
124this.stream = stream; 607stream = null;
11 references to stream
System.Xml (11)
System\Xml\Core\XmlUtf8RawTextWriter.cs (7)
596if ( stream != null ) { 598stream.Flush(); 603stream.Close(); 620if ( stream != null ) { 621stream.Flush(); 635Debug.Assert( stream != null); 636stream.Write( bufBytes, 1, bufPos - 1 );
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (4)
450if ( stream != null ) { 451await stream.FlushAsync().ConfigureAwait(false); 465Debug.Assert( stream != null); 466await stream.WriteAsync( bufBytes, 1, bufPos - 1 ).ConfigureAwait(false);