Click or drag to resize

ICursorResponseT Interface

Represents common properties in the response from Cursor API endpoints.

Namespace:  ArangoDBNetStandard.CursorApi.Models
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public interface ICursorResponse<T>

Type Parameters

T
The type of the document deserialized in the results.

The ICursorResponseT type exposes the following members.

Properties
  NameDescription
Public propertyCode
The HTTP status code.
Public propertyCount
The total number of result documents available (only available if requested in the initial cursor query).
Public propertyError
A flag to indicate that an error occurred (false in this case).
Public propertyHasMore
Whether more results are available to fetch from the cursor. False if this was the last batch.
Public propertyId
The cursor identifier.
Public propertyResult
A list of documents for the current batch of results (might be empty if query has no results).
Top
See Also