2 writes to stream
System.Runtime.Serialization (2)
System\Xml\EncodingStreamWrapper.cs (2)
57
this.
stream
= new BufferedStream(stream);
193
this.
stream
= new BufferedStream(stream);
25 references to stream
System.Runtime.Serialization (25)
System\Xml\EncodingStreamWrapper.cs (25)
209
this.
stream
.Write(bom, 0, bom.Length);
216
int b1 = this.
stream
.ReadByte();
217
int b2 = this.
stream
.ReadByte();
218
int b3 = this.
stream
.ReadByte();
219
int b4 = this.
stream
.ReadByte();
308
int read =
stream
.Read(bytes, byteOffset + byteCount, count);
556
return this.
stream
.CanRead;
577
return this.
stream
.CanWrite;
600
this.
stream
.Close();
605
this.
stream
.Flush();
611
return this.
stream
.ReadByte();
624
return this.
stream
.Read(buffer, offset, count);
628
byteCount = this.
stream
.Read(bytes, byteCount, (chars.Length - 1) * 2);
663
int b = this.
stream
.ReadByte();
683
int b1 = this.
stream
.ReadByte();
684
int b2 = this.
stream
.ReadByte();
702
this.
stream
.WriteByte(b);
714
this.
stream
.Write(buffer, offset, count);
723
this.
stream
.Write(bytes, 0, byteCount);
730
public override bool CanTimeout { get { return this.
stream
.CanTimeout; } }
731
public override long Length { get { return this.
stream
.Length; } }
734
get { return this.
stream
.ReadTimeout; }
735
set { this.
stream
.ReadTimeout = value; }
739
get { return this.
stream
.WriteTimeout; }
740
set { this.
stream
.WriteTimeout = value; }