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