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 | |
---|---|
Name | Description |
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.
Parameters | |
---|---|
Name | Description |
resources | IEnumerable<TResource> The resources in the page. |
nextPageToken | String The next page token. |
Properties
NextPageToken
public string NextPageToken { get; }
The page token to use to fetch the next set of resources.
Property Value | |
---|---|
Type | Description |
String |
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()
Returns | |
---|---|
Type | Description |
IEnumerator<TResource> |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
IEnumerator IEnumerable.GetEnumerator()
Returns | |
---|---|
Type | Description |
IEnumerator |