3 writes to read
System (3)
net\System\Net\mail\BufferedReadStream.cs (3)
229this.read = Math.Min(count, parent.storedLength - parent.storedOffset); 244this.read += parent.BaseStream.EndRead(result); 263thisPtr.read += thisPtr.parent.BaseStream.EndRead(result);
6 references to read
System (6)
net\System\Net\mail\BufferedReadStream.cs (6)
230Buffer.BlockCopy(parent.storedBuffer, parent.storedOffset, buffer, offset, this.read); 231parent.storedOffset += this.read; 232if (this.read == count || !this.parent.readMore) 237count -= this.read; 238offset += this.read; 253return thisPtr.read;