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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-28 UTC."],[[["\u003cp\u003eThe \u003ccode\u003ePage<TResource>\u003c/code\u003e class represents a page of resources, ensuring that the number of results is less than the requested amount only if no more data exists.\u003c/p\u003e\n"],["\u003cp\u003eThe class implements \u003ccode\u003eIEnumerable<TResource>\u003c/code\u003e and \u003ccode\u003eIEnumerable\u003c/code\u003e, allowing it to be used in collection-based operations.\u003c/p\u003e\n"],["\u003cp\u003eThe latest version is \u003ccode\u003e4.10.0\u003c/code\u003e, and previous versions such as 4.8.0, 4.4.0, 4.3.1, 4.2.0, 4.0.0, and 3.2.0 are also accessible.\u003c/p\u003e\n"],["\u003cp\u003eThe constructor \u003ccode\u003ePage(IEnumerable<TResource> resources, string nextPageToken)\u003c/code\u003e creates a page from a sequence of resources and a token for the next page.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eNextPageToken\u003c/code\u003e property provides the token needed to retrieve the subsequent set of resources, and its value is consistent with what the API returns.\u003c/p\u003e\n"]]],[],null,["# Class Page<TResource> (4.10.0)\n\nVersion latestkeyboard_arrow_down\n\n- [4.10.0 (latest)](/dotnet/docs/reference/Google.Api.Gax/latest/Google.Api.Gax.Page-1)\n- [4.8.0](/dotnet/docs/reference/Google.Api.Gax/4.8.0/Google.Api.Gax.Page-1)\n- [4.4.0](/dotnet/docs/reference/Google.Api.Gax/4.4.0/Google.Api.Gax.Page-1)\n- [4.3.1](/dotnet/docs/reference/Google.Api.Gax/4.3.1/Google.Api.Gax.Page-1)\n- [4.2.0](/dotnet/docs/reference/Google.Api.Gax/4.2.0/Google.Api.Gax.Page-1)\n- [4.0.0](/dotnet/docs/reference/Google.Api.Gax/4.0.0/Google.Api.Gax.Page-1)\n- [3.2.0](/dotnet/docs/reference/Google.Api.Gax/3.2.0/Google.Api.Gax.Page-1) \n\n public sealed class Page\u003cTResource\u003e : IEnumerable\u003cTResource\u003e, IEnumerable\n\nA page of resources which will only have fewer results than requested if\nthere is no more data to fetch. \n\nInheritance\n-----------\n\n[object](https://learn.microsoft.com/dotnet/api/system.object) \\\u003e Page\\\u003cTResource\\\u003e \n\nImplements\n----------\n\n[IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1), [IEnumerable](https://learn.microsoft.com/dotnet/api/system.collections.ienumerable) \n\nInherited Members\n-----------------\n\n[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)) \n[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)) \n[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode) \n[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype) \n[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals) \n[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring)\n\nNamespace\n---------\n\n[Google.Api.Gax](/dotnet/docs/reference/Google.Api.Gax/latest/Google.Api.Gax)\n\nAssembly\n--------\n\nGoogle.Api.Gax.dll\n\nConstructors\n------------\n\n### Page(IEnumerable\\\u003cTResource\\\u003e, string)\n\n public Page(IEnumerable\u003cTResource\u003e resources, string nextPageToken)\n\nConstructs a fixed-size page from the given resource sequence and page token.\n\nProperties\n----------\n\n### NextPageToken\n\n public string NextPageToken { get; }\n\nThe page token to use to fetch the next set of resources.\n\n**Remarks** \ngRPC-based APIs use an empty string as a \"no page token\", whereas REST-based APIs\nuse a null reference instead. The value here will be consistent with the value returned\nby the API itself.\n\nMethods\n-------\n\n### GetEnumerator()\n\n public IEnumerator\u003cTResource\u003e GetEnumerator()"]]