PagedApplicationTypeQueryDescription.ContinuationToken Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the continuation token which can be used to retrieve the next page.
public string ContinuationToken { get; set; }
member this.ContinuationToken : string with get, set
Public Property ContinuationToken As String
Property Value
Remarks
Defaults to null, which returns page one of query results.
If too many results respect the filter, they may not fit into one message. Paging is used to account for this by splitting the collection of ApplicationTypes into separate pages. The continuation token is used to know where the previous page left off, carrying significance only to the query itself. This value should be generated from running this query, and can be passed into the next query request in order to get subsequent pages. A non-null continuation token value is returned as part of the result only if there is a subsequent page.
Applies to
Azure SDK for .NET