public sealed class Cursor : IMessage<Cursor>, IEquatable<Cursor>, IDeepCloneable<Cursor>, IBufferMessage, IMessage
Reference documentation and code samples for the Firestore v1 API class Cursor.
A position in a query result set.
Namespace
Google.Cloud.Firestore.V1Assembly
Google.Cloud.Firestore.V1.dll
Constructors
Cursor()
public Cursor()
Cursor(Cursor)
public Cursor(Cursor other)
Parameter | |
---|---|
Name | Description |
other |
Cursor |
Properties
Before
public bool Before { get; set; }
If the position is just before or just after the given values, relative to the sort order defined by the query.
Property Value | |
---|---|
Type | Description |
bool |
Values
public RepeatedField<Value> Values { get; }
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.
Property Value | |
---|---|
Type | Description |
RepeatedFieldValue |