Show / Hide Table of Contents

Interface IPageResponse<TResource>

A response in a page-streaming operation.

Inherited Members
System.Collections.Generic.IEnumerable<TResource>.GetEnumerator()
Namespace: Google.Api.Gax.Grpc
Assembly: Google.Api.Gax.Grpc.dll
Syntax
public interface IPageResponse<TResource> : IEnumerable<TResource>, IEnumerable
Type Parameters
Name Description
TResource

The type of resource contained in the response.

Properties

NextPageToken

The token to set in the PageToken when requesting the next page of results.

Declaration
string NextPageToken { get; }
Property Value
Type Description
System.String
Back to top