ICursorApiClientPutCursorAsyncT Method |
Advances an existing query cursor and gets the next set of results.
Namespace:
ArangoDBNetStandard.CursorApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax Task<PutCursorResponse<T>> PutCursorAsync<T>(
string cursorId
)
Function PutCursorAsync(Of T) (
cursorId As String
) As Task(Of PutCursorResponse(Of T))
generic<typename T>
Task<PutCursorResponse<T>^>^ PutCursorAsync(
String^ cursorId
)
abstract PutCursorAsync :
cursorId : string -> Task<PutCursorResponse<'T>>
Parameters
- cursorId
- Type: SystemString
ID of the existing query cursor.
Type Parameters
- T
- Result type to deserialize to
Return Value
Type:
TaskPutCursorResponseTSee Also