CursorApiClientPostCursorAsyncT Method (PostCursorBody, CursorHeaderProperties) |
Execute an AQL query, creating a cursor which can be used to page query results.
Namespace:
ArangoDBNetStandard.CursorApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax public virtual Task<CursorResponse<T>> PostCursorAsync<T>(
PostCursorBody postCursorBody,
CursorHeaderProperties headerProperties = null
)
Public Overridable Function PostCursorAsync(Of T) (
postCursorBody As PostCursorBody,
Optional headerProperties As CursorHeaderProperties = Nothing
) As Task(Of CursorResponse(Of T))
public:
generic<typename T>
virtual Task<CursorResponse<T>^>^ PostCursorAsync(
PostCursorBody^ postCursorBody,
CursorHeaderProperties^ headerProperties = nullptr
)
abstract PostCursorAsync :
postCursorBody : PostCursorBody *
?headerProperties : CursorHeaderProperties
(* Defaults:
let _headerProperties = defaultArg headerProperties null
*)
-> Task<CursorResponse<'T>>
override PostCursorAsync :
postCursorBody : PostCursorBody *
?headerProperties : CursorHeaderProperties
(* Defaults:
let _headerProperties = defaultArg headerProperties null
*)
-> Task<CursorResponse<'T>>
Parameters
- postCursorBody
- Type: ArangoDBNetStandard.CursorApi.ModelsPostCursorBody
Object encapsulating options and parameters of the query. - headerProperties (Optional)
- Type: ArangoDBNetStandard.CursorApi.ModelsCursorHeaderProperties
Optional. Additional Header properties.
Type Parameters
- T
Return Value
Type:
TaskCursorResponseTImplements
ICursorApiClientPostCursorAsyncT(PostCursorBody, CursorHeaderProperties)See Also