Show / Hide Table of Contents

Class ListDatasetsResponse

Results of listing datasets within a project.

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

Constructors

ListDatasetsResponse()

Declaration
public ListDatasetsResponse()

ListDatasetsResponse(ListDatasetsResponse)

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

Properties

Datasets

The list of datasets to return.

Declaration
public RepeatedField<Dataset> Datasets { get; }
Property Value
Type Description
RepeatedField<Dataset>

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