Show / Hide Table of Contents

Class ReadOptions

The options shared by read requests.

Inheritance
object
ReadOptions
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.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class ReadOptions : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

ReadConsistency

The non-transactional read consistency to use.

Declaration
[JsonProperty("readConsistency")]
public virtual string ReadConsistency { get; set; }
Property Value
Type Description
string

ReadTime

Reads entities as they were at the given time. This may not be older than 270 seconds. This value is only supported for Cloud Firestore in Datastore mode.

Declaration
[JsonProperty("readTime")]
public virtual object ReadTime { get; set; }
Property Value
Type Description
object

Transaction

The identifier of the transaction in which to read. A transaction identifier is returned by a call to Datastore.BeginTransaction.

Declaration
[JsonProperty("transaction")]
public virtual string Transaction { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX