Base:
7 references to ReadAsync
csc (1)
src\Compilers\Shared\BuildServerConnection.cs (1)
353await pipeStream.ReadAsync(buffer, 0, 0, cancellationToken).ConfigureAwait(false);
Microsoft.Build (2)
BufferedReadStream.cs (2)
138int innerReadCount = await _innerStream.ReadAsync(buffer, offset + alreadyCopied, count - alreadyCopied, cancellationToken); 156int innerReadCount = await _innerStream.ReadAsync(_buffer, 0, BUFFER_SIZE, cancellationToken);
Microsoft.Build.Tasks.CodeAnalysis (1)
src\Compilers\Shared\BuildServerConnection.cs (1)
353await pipeStream.ReadAsync(buffer, 0, 0, cancellationToken).ConfigureAwait(false);
MSBuild (2)
BufferedReadStream.cs (2)
138int innerReadCount = await _innerStream.ReadAsync(buffer, offset + alreadyCopied, count - alreadyCopied, cancellationToken); 156int innerReadCount = await _innerStream.ReadAsync(_buffer, 0, BUFFER_SIZE, cancellationToken);
System.IO.Pipes (1)
System\IO\Pipes\PipeStream.Unix.cs (1)
106=> TaskToAsyncResult.Begin(ReadAsync(buffer, offset, count, CancellationToken.None), callback, state);