4 overrides of ReadBlockAsync
System.Console (1)
System\IO\SyncTextReader.cs (1)
118
public override Task<int>
ReadBlockAsync
(char[] buffer, int index, int count)
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\IO\StreamReader.cs (1)
1258
public override Task<int>
ReadBlockAsync
(char[] buffer, int index, int count)
src\libraries\System.Private.CoreLib\src\System\IO\StringReader.cs (1)
287
public override Task<int>
ReadBlockAsync
(char[] buffer, int index, int count)
src\libraries\System.Private.CoreLib\src\System\IO\TextReader.cs (1)
390
public override Task<int>
ReadBlockAsync
(char[] buffer, int index, int count)
3 references to ReadBlockAsync
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\IO\StreamReader.cs (2)
1275
return base.
ReadBlockAsync
(buffer, index, count);
1281
Task<int> task = base.
ReadBlockAsync
(buffer, index, count);
src\libraries\System.Private.CoreLib\src\System\IO\TextReader.cs (1)
306
ReadBlockAsync
(array.Array!, array.Offset, array.Count) :