Show / Hide Table of Contents

Interface IPageRequest

A request for a page-streaming operation.

Namespace: Google.Api.Gax.Grpc
Assembly: Google.Api.Gax.Grpc.dll
Syntax
public interface IPageRequest

Properties

PageSize

The maximum number of elements to return in the response.

Declaration
int PageSize { set; }
Property Value
Type Description
System.Int32

PageToken

A token indicating the page to return. This is obtained from an earlier response, via NextPageToken.

Declaration
string PageToken { set; }
Property Value
Type Description
System.String
Back to top