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