Show / Hide Table of Contents

Class ListTablesResponse

Response message for TablesService.ListTables.

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

Constructors

ListTablesResponse()

Declaration
public ListTablesResponse()

ListTablesResponse(ListTablesResponse)

Declaration
public ListTablesResponse(ListTablesResponse other)
Parameters
Type Name Description
ListTablesResponse 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

Tables

The list of tables.

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

Methods

GetEnumerator()

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

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