Class LookupResponse (3.3.0)

public sealed class LookupResponse : IMessage<LookupResponse>, IEquatable<LookupResponse>, IDeepCloneable<LookupResponse>, IBufferMessage, IMessage

The response for [Datastore.Lookup][google.datastore.v1.Datastore.Lookup].

Inheritance

Object > LookupResponse

Namespace

Google.Cloud.Datastore.V1

Assembly

Google.Cloud.Datastore.V1.dll

Constructors

LookupResponse()

public LookupResponse()

LookupResponse(LookupResponse)

public LookupResponse(LookupResponse other)
Parameter
NameDescription
otherLookupResponse

Properties

Deferred

public RepeatedField<Key> Deferred { get; }

A list of keys that were not looked up due to resource constraints. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Property Value
TypeDescription
RepeatedField<Key>

Found

public RepeatedField<EntityResult> Found { get; }

Entities found as ResultType.FULL entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Property Value
TypeDescription
RepeatedField<EntityResult>

Missing

public RepeatedField<EntityResult> Missing { get; }

Entities not found as ResultType.KEY_ONLY entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.

Property Value
TypeDescription
RepeatedField<EntityResult>