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