DbDataReader::ReadAsync Method
Implements the asynchronous version of Read, but returns a Task synchronously, blocking the calling thread.
Assembly: System.Data (in System.Data.dll)
| Name | Description | |
|---|---|---|
![]() | ReadAsync() | |
![]() | ReadAsync(CancellationToken) | This is the asynchronous version of Read. Providers should override with an appropriate implementation. The cancellationToken may optionally be ignored. The default implementation invokes the synchronous Read method and returns a completed task, blocking the calling thread. The default implementation will return a cancelled task if passed an already cancelled cancellationToken. Exceptions thrown by Read will be communicated via the returned Task Exception property. Do not invoke other methods and properties of the DbDataReader object until the returned Task is complete. |
For more information about asynchronous programming, see Asynchronous Programming.
