Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SqlDataReader::NextResultAsync Method (CancellationToken)

.NET Framework (current version)
 

An asynchronous version of NextResult, which advances the data reader to the next result, when reading the results of batch Transact-SQL statements.

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.

Namespace:   System.Data.SqlClient
Assembly:  System.Data (in System.Data.dll)

public:
virtual Task<bool>^ NextResultAsync(
	CancellationToken cancellationToken
) override

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 NextResultAsync 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.

For more information about asynchronous programming in the .NET Framework Data Provider for SQL Server, see Asynchronous Programming.

.NET Framework
Available since 4.5
Return to top
Show:
© 2017 Microsoft