public sealed class Page<TResource> : IEnumerable<TResource>, IEnumerable
A page of resources which will only have fewer results than requested if there is no more data to fetch.
Namespace
Google.Api.GaxAssembly
Google.Api.Gax.dll
Type Parameter
TResource
The type of resource within the page.
Constructors
Page(IEnumerable<TResource>, string)
public Page(IEnumerable<TResource> resources, string nextPageToken)
Constructs a fixed-size page from the given resource sequence and page token.
resources
nextPageToken
Properties
NextPageToken
public string NextPageToken { get; }
The page token to use to fetch the next set of resources.
gRPC-based APIs use an empty string as a "no page token", whereas REST-based APIs use a null reference instead. The value here will be consistent with the value returned by the API itself.
Methods
GetEnumerator()
public IEnumerator<TResource> GetEnumerator()

