2 writes to _stream
System.Private.DataContractSerialization (2)
System\Xml\EncodingStreamWrapper.cs (2)
59
_stream
= stream;
169
_stream
= stream;
26 references to _stream
System.Private.DataContractSerialization (26)
System\Xml\EncodingStreamWrapper.cs (26)
185
_stream
.Write(bom);
193
int b1 =
_stream
.ReadByte();
194
int b2 =
_stream
.ReadByte();
195
int b3 =
_stream
.ReadByte();
196
int b4 =
_stream
.ReadByte();
285
_byteCount +=
_stream
.ReadAtLeast(_bytes.AsSpan(_byteOffset + _byteCount, count), count, throwOnEndOfStream: false);
520
return
_stream
.CanRead;
541
return
_stream
.CanWrite;
561
if (
_stream
.CanWrite)
567
_stream
.Dispose();
572
_stream
.Flush();
578
return
_stream
.ReadByte();
594
return
_stream
.Read(buffer);
601
_byteCount =
_stream
.Read(_bytes, _byteCount, (_chars.Length - 1) * 2);
640
int b =
_stream
.ReadByte();
660
int b1 =
_stream
.ReadByte();
661
int b2 =
_stream
.ReadByte();
679
_stream
.WriteByte(b);
691
_stream
.Write(buffer, offset, count);
703
_stream
.Write(_bytes, 0, _byteCount);
710
public override bool CanTimeout { get { return
_stream
.CanTimeout; } }
711
public override long Length { get { return
_stream
.Length; } }
714
get { return
_stream
.ReadTimeout; }
715
set {
_stream
.ReadTimeout = value; }
719
get { return
_stream
.WriteTimeout; }
720
set {
_stream
.WriteTimeout = value; }