Click or drag to resize

CursorResponseT Class

Response from ArangoDB when creating a new cursor.
Inheritance Hierarchy
SystemObject
  ArangoDBNetStandard.CursorApi.ModelsCursorResponseT

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

Type Parameters

T

The CursorResponseT type exposes the following members.

Constructors
  NameDescription
Public methodCursorResponseT
Initializes a new instance of the CursorResponseT class
Top
Properties
  NameDescription
Public propertyCached
Indicates whether the query result was served from the query cache or not. If the query result is served from the query cache, the extra return attribute will not contain any stats sub-attribute and no profile sub-attribute.
Public propertyCode
The HTTP status code
Public propertyCount
the total number of result documents available (only available if the query was executed with the count attribute set)
Public propertyError
A flag to indicate that an error occurred (false in this case)
Public propertyExtra
Optional object with extra information about the query result contained in its Stats sub-attribute. For data-modification queries, the sub-attribute will contain the number of modified documents and the number of documents that could not be modified due to an error (if ignoreErrors query option is specified).
Public propertyHasMore
Whether there are more results available for the cursor on the server.
Public propertyId
ID of temporary cursor created on the server (optional).
Public propertyResult
Result documents (might be empty if query has no results).
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
See Also