Class ReadOptions
The options shared by read requests.
Inheritance
System.Object
ReadOptions
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.dll
Syntax
public class ReadOptions : 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
[JsonProperty("readConsistency")]
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
[JsonProperty("transaction")]
public virtual string Transaction { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Implements
Google.Apis.Requests.IDirectResponseSchema