2 writes to stream
System.Runtime.Serialization (2)
System\Runtime\Serialization\Json\JsonEncodingStreamWrapper.cs (2)
477this.stream = new BufferedStream(inputStream); 510this.stream = new BufferedStream(outputStream);
22 references to stream
System.Runtime.Serialization (22)
System\Runtime\Serialization\Json\JsonEncodingStreamWrapper.cs (22)
95return this.stream.CanRead; 108get { return this.stream.CanTimeout; } 121return this.stream.CanWrite; 127get { return this.stream.Length; } 144get { return this.stream.ReadTimeout; } 145set { this.stream.ReadTimeout = value; } 150get { return this.stream.WriteTimeout; } 151set { this.stream.WriteTimeout = value; } 194this.stream.Close(); 199this.stream.Flush(); 210return this.stream.Read(buffer, offset, count); 215byteCount = this.stream.Read(bytes, byteCount, (chars.Length - 1) * 2); 252return this.stream.ReadByte(); 277this.stream.Write(buffer, offset, count); 286this.stream.Write(bytes, 0, byteCount); 296this.stream.WriteByte(b); 400int b = this.stream.ReadByte(); 423int b1 = this.stream.ReadByte(); 424int b2 = this.stream.ReadByte(); 462int read = stream.Read(bytes, byteOffset + byteCount, count); 525int b1 = this.stream.ReadByte(); 526int b2 = this.stream.ReadByte();