7 references to ReadAsync
mscorlib (4)
system\io\streamreader.cs (4)
972
int len = await tmpStream.
ReadAsync
(tmpByteBuffer, tmpBytePos, tmpByteBuffer.Length - tmpBytePos).ConfigureAwait(false);
1008
ByteLen_Prop = await tmpStream.
ReadAsync
(tmpByteBuffer, 0, tmpByteBuffer.Length).ConfigureAwait(false);
1198
int len = await tmpStream.
ReadAsync
(tmpByteBuffer, tmpBytePos, tmpByteBuffer.Length - tmpBytePos).ConfigureAwait(false);
1218
ByteLen_Prop = await tmpStream.
ReadAsync
(tmpByteBuffer, 0, tmpByteBuffer.Length).ConfigureAwait(false);
System.Data (1)
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
10468
nRead = await feed._source.
ReadAsync
(buff, 0, readSize).ConfigureAwait(false);
System.Xml (2)
System\Xml\Core\XmlTextReaderImplAsync.cs (2)
866
int read = await stream.
ReadAsync
( ps.bytes, ps.bytesUsed, ps.bytes.Length - ps.bytesUsed ).ConfigureAwait(false);
1067
int read = await ps.stream.
ReadAsync
( ps.bytes, ps.bytesUsed, ps.bytes.Length - ps.bytesUsed ).ConfigureAwait(false);