Show / Hide Table of Contents

Class Cursor

A position in a query result set.

Inheritance
object
Cursor
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Firestore.v1.Data
Assembly: Google.Apis.Firestore.v1.dll
Syntax
public class Cursor : IDirectResponseSchema

Properties

Before

If the position is just before or just after the given values, relative to the sort order defined by the query.

Declaration
[JsonProperty("before")]
public virtual bool? Before { get; set; }
Property Value
Type Description
bool?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

Values

The values that represent a position, in the order they appear in the order by clause of a query. Can contain fewer values than specified in the order by clause.

Declaration
[JsonProperty("values")]
public virtual IList<Value> Values { get; set; }
Property Value
Type Description
IList<Value>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX