Show / Hide Table of Contents

Class ListTablesRequest

Request message for TablesService.ListTables.

Inheritance
System.Object
ListTablesRequest
Implements
Google.Protobuf.IMessage<ListTablesRequest>
System.IEquatable<ListTablesRequest>
Google.Protobuf.IDeepCloneable<ListTablesRequest>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Google.Api.Gax.Grpc.IPageRequest
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 ListTablesRequest : IMessage<ListTablesRequest>, IEquatable<ListTablesRequest>, IDeepCloneable<ListTablesRequest>, IBufferMessage, IMessage, IPageRequest

Constructors

ListTablesRequest()

Declaration
public ListTablesRequest()

ListTablesRequest(ListTablesRequest)

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

Properties

PageSize

The maximum number of tables to return. The service may return fewer than this value.

If unspecified, at most 20 tables are returned. The maximum value is 100; values above 100 are coerced to 100.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
System.Int32
Implements
Google.Api.Gax.Grpc.IPageRequest.PageSize

PageToken

A page token, received from a previous ListTables call. Provide this to retrieve the subsequent page.

When paginating, all other parameters provided to ListTables must match the call that provided the page token.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
System.String
Implements
Google.Api.Gax.Grpc.IPageRequest.PageToken
Back to top