ReadAsync()
This method returns a Task-based asynchronous version of OracleDataReader.Read().
Declaration
// C# public Task<bool> ReadAsync();
Return Value
Task<bool> object representing the asynchronous operation immediately without blocking the calling thread for the whole duration of the query execution
Implements
DbDataReader
Exceptions
InvalidOperationException - The connection is closed, or the reader is closed.
Remarks
This will call into the ReadAsync implementation with argument cancellationToken passed as CancellationToken.None.