NextResultAsync()

This method returns a Task-based asynchronous version of OracleDataReader.NextResult().

Declaration

// C#
public Task<bool> NextResultAsync();

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 NextResultAsync implementation with argument cancellationToken passed as CancellationToken.None.