Show / Hide Table of Contents

Class ListExamplesResponse

Results of listing Examples in and annotated dataset.

Inheritance
System.Object
ListExamplesResponse
Implements
IMessage<ListExamplesResponse>
System.IEquatable<ListExamplesResponse>
IDeepCloneable<ListExamplesResponse>
Google.Protobuf.IBufferMessage
IMessage
IPageResponse<Example>
System.Collections.Generic.IEnumerable<Example>
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 ListExamplesResponse : IMessage<ListExamplesResponse>, IEquatable<ListExamplesResponse>, IDeepCloneable<ListExamplesResponse>, IBufferMessage, IMessage, IPageResponse<Example>, IEnumerable<Example>, IEnumerable

Constructors

ListExamplesResponse()

Declaration
public ListExamplesResponse()

ListExamplesResponse(ListExamplesResponse)

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

Properties

Examples

The list of examples to return.

Declaration
public RepeatedField<Example> Examples { get; }
Property Value
Type Description
RepeatedField<Example>

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<Example> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<Example>
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