2 writes to _stream
dotnet-svcutil-lib (2)
FrameworkFork\System.Runtime.Serialization\System\Xml\EncodingStreamWrapper.cs (2)
59_stream = stream; 195_stream = stream;
25 references to _stream
dotnet-svcutil-lib (25)
FrameworkFork\System.Runtime.Serialization\System\Xml\EncodingStreamWrapper.cs (25)
211_stream.Write(bom, 0, bom.Length); 218int b1 = _stream.ReadByte(); 219int b2 = _stream.ReadByte(); 220int b3 = _stream.ReadByte(); 221int b4 = _stream.ReadByte(); 310int read = _stream.Read(_bytes, _byteOffset + _byteCount, count); 558return _stream.CanRead; 579return _stream.CanWrite; 600_stream.Dispose(); 606_stream.Flush(); 612return _stream.ReadByte(); 625return _stream.Read(buffer, offset, count); 629_byteCount = _stream.Read(_bytes, _byteCount, (_chars.Length - 1) * 2); 664int b = _stream.ReadByte(); 684int b1 = _stream.ReadByte(); 685int b2 = _stream.ReadByte(); 703_stream.WriteByte(b); 715_stream.Write(buffer, offset, count); 724_stream.Write(_bytes, 0, _byteCount); 731public override bool CanTimeout { get { return _stream.CanTimeout; } } 732public override long Length { get { return _stream.Length; } } 735get { return _stream.ReadTimeout; } 736set { _stream.ReadTimeout = value; } 740get { return _stream.WriteTimeout; } 741set { _stream.WriteTimeout = value; }