Show / Hide Table of Contents

Class ListWorkspacesResponse

Response message for TablesService.ListWorkspaces.

Inheritance
System.Object
ListWorkspacesResponse
Implements
Google.Protobuf.IMessage<ListWorkspacesResponse>
System.IEquatable<ListWorkspacesResponse>
Google.Protobuf.IDeepCloneable<ListWorkspacesResponse>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Google.Api.Gax.Grpc.IPageResponse<Workspace>
System.Collections.Generic.IEnumerable<Workspace>
System.Collections.IEnumerable
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Area120.Tables.V1Alpha1
Assembly: Google.Area120.Tables.V1Alpha1.dll
Syntax
public sealed class ListWorkspacesResponse : IMessage<ListWorkspacesResponse>, IEquatable<ListWorkspacesResponse>, IDeepCloneable<ListWorkspacesResponse>, IBufferMessage, IMessage, IPageResponse<Workspace>, IEnumerable<Workspace>, IEnumerable

Constructors

ListWorkspacesResponse()

Declaration
public ListWorkspacesResponse()

ListWorkspacesResponse(ListWorkspacesResponse)

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

Properties

NextPageToken

A token, which can be sent as page_token to retrieve the next page. If this field is empty, there are no subsequent pages.

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

Workspaces

The list of workspaces.

Declaration
public RepeatedField<Workspace> Workspaces { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<Workspace>

Methods

GetEnumerator()

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

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