IChangeFeedDocumentQuery<T>.ExecuteNextAsync<TResult> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Executes the query and retrieves the next page of results in the Azure DocumentDB database service.
public System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.IFeedResponse<TResult>> ExecuteNextAsync<TResult> (System.Threading.CancellationToken token = default);
abstract member ExecuteNextAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Documents.Client.IFeedResponse<'Result>>
Public Function ExecuteNextAsync(Of TResult) (Optional token As CancellationToken = Nothing) As Task(Of IFeedResponse(Of TResult))
Type Parameters
- TResult
The type of the object returned in the query result.
Parameters
- token
- CancellationToken
(Optional) The CancellationToken allows for notification that operations should be cancelled.
Returns
Task<IFeedResponse<TResult>>
The Task object for the asynchronous response from query execution.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET