SqlDataReader::ReadAsync Method (CancellationToken)
An asynchronous version of Read, which advances the SqlDataReader to the next record.
The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.
Assembly: System.Data (in System.Data.dll)
Parameters
- cancellationToken
-
Type:
System.Threading::CancellationToken
The cancellation instruction.
Return Value
Type: System.Threading.Tasks::Task<Boolean>^A task representing the asynchronous operation.
| Exception | Condition |
|---|---|
| InvalidOperationException | Calling ReadAsync more than once for the same instance before task completion. Context Connection=true is specified in the connection string. |
| SqlException | SQL Server returned an error while executing the command text. |
If the behavior parameter of ExecuteReaderAsync is set to Default, ReadAsync reads the entire row before returning the Task.
For more information, including code samples, about asynchronous programming in the .NET Framework Data Provider for SQL Server, see Asynchronous Programming.
Available since 4.5