Show / Hide Table of Contents

Class ReadOptions

The options shared by read requests.

Inheritance
System.Object
ReadOptions
Implements
IDirectResponseSchema
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class ReadOptions : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

ReadConsistency

The non-transactional read consistency to use. Cannot be set to STRONG for global queries.

Declaration
public virtual string ReadConsistency { get; set; }
Property Value
Type Description
System.String

Transaction

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

Declaration
public virtual string Transaction { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top