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); 193int b1 = _stream.ReadByte(); 194int b2 = _stream.ReadByte(); 195int b3 = _stream.ReadByte(); 196int b4 = _stream.ReadByte(); 285_byteCount += _stream.ReadAtLeast(_bytes.AsSpan(_byteOffset + _byteCount, count), count, throwOnEndOfStream: false); 520return _stream.CanRead; 541return _stream.CanWrite; 561if (_stream.CanWrite) 567_stream.Dispose(); 572_stream.Flush(); 578return _stream.ReadByte(); 594return _stream.Read(buffer); 601_byteCount = _stream.Read(_bytes, _byteCount, (_chars.Length - 1) * 2); 640int b = _stream.ReadByte(); 660int b1 = _stream.ReadByte(); 661int b2 = _stream.ReadByte(); 679_stream.WriteByte(b); 691_stream.Write(buffer, offset, count); 703_stream.Write(_bytes, 0, _byteCount); 710public override bool CanTimeout { get { return _stream.CanTimeout; } } 711public override long Length { get { return _stream.Length; } } 714get { return _stream.ReadTimeout; } 715set { _stream.ReadTimeout = value; } 719get { return _stream.WriteTimeout; } 720set { _stream.WriteTimeout = value; }