Show / Hide Table of Contents

Class SearchEvaluationsResponse

Results of searching evaluations.

Inheritance
System.Object
SearchEvaluationsResponse
Implements
IMessage<SearchEvaluationsResponse>
System.IEquatable<SearchEvaluationsResponse>
IDeepCloneable<SearchEvaluationsResponse>
Google.Protobuf.IBufferMessage
IMessage
IPageResponse<Evaluation>
System.Collections.Generic.IEnumerable<Evaluation>
System.Collections.IEnumerable
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class SearchEvaluationsResponse : IMessage<SearchEvaluationsResponse>, IEquatable<SearchEvaluationsResponse>, IDeepCloneable<SearchEvaluationsResponse>, IBufferMessage, IMessage, IPageResponse<Evaluation>, IEnumerable<Evaluation>, IEnumerable

Constructors

SearchEvaluationsResponse()

Declaration
public SearchEvaluationsResponse()

SearchEvaluationsResponse(SearchEvaluationsResponse)

Declaration
public SearchEvaluationsResponse(SearchEvaluationsResponse other)
Parameters
Type Name Description
SearchEvaluationsResponse other

Properties

Evaluations

The list of evaluations matching the search.

Declaration
public RepeatedField<Evaluation> Evaluations { get; }
Property Value
Type Description
RepeatedField<Evaluation>

NextPageToken

A token to retrieve next page of results.

Declaration
public string NextPageToken { get; set; }
Property Value
Type Description
System.String
Implements
IPageResponse<TResource>.NextPageToken

Methods

GetEnumerator()

Returns an enumerator that iterates through the resources in this response.

Declaration
public IEnumerator<Evaluation> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<Evaluation>
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator
Implements
System.Collections.IEnumerable.GetEnumerator()
Back to top