5 overrides of ReadAsync
Microsoft.AspNetCore.WebUtilities (1)
HttpRequestStreamReader.cs (1)
214public override Task<int> ReadAsync(char[] buffer, int index, int count)
System.Console (1)
System\IO\SyncTextReader.cs (1)
130public override Task<int> ReadAsync(char[] buffer, int index, int count)
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\IO\StreamReader.cs (1)
1049public override Task<int> ReadAsync(char[] buffer, int index, int count)
src\libraries\System.Private.CoreLib\src\System\IO\StringReader.cs (1)
305public override Task<int> ReadAsync(char[] buffer, int index, int count)
src\libraries\System.Private.CoreLib\src\System\IO\TextReader.cs (1)
403public override Task<int> ReadAsync(char[] buffer, int index, int count)
3 references to ReadAsync
Microsoft.AspNetCore.WebUtilities (1)
FormReader.cs (1)
275_bufferCount = await _reader.ReadAsync(_buffer, 0, _buffer.Length);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\IO\StreamReader.cs (1)
1066return base.ReadAsync(buffer, index, count);
src\libraries\System.Private.CoreLib\src\System\IO\TextReader.cs (1)
276ReadAsync(array.Array!, array.Offset, array.Count) :