Click or drag to resize

PutCursorResponseT Class

Represents a response returned when reading next batch of results from an existing cursor.
Inheritance Hierarchy
SystemObject
  ArangoDBNetStandard.CursorApi.ModelsPutCursorResponseT

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

Type Parameters

T
The type of the document deserialized in the results.

The PutCursorResponseT type exposes the following members.

Constructors
  NameDescription
Public methodPutCursorResponseT
Initializes a new instance of the PutCursorResponseT class
Top
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
Indicates whether 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.
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks
Note that even if HasMore returns true, the next call might still return no documents. If, however, HasMore is false, then the cursor is exhausted. Once the HasMore has a value of false, the client can stop.
See Also