PageableList<T> Class
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.
Represents a pageable list of data items with item ID cursors representing the start and end of the current page.
public class PageableList<T> : System.Collections.Generic.IEnumerable<T>
type PageableList<'T> = class
interface seq<'T>
interface IEnumerable
Public Class PageableList(Of T)
Implements IEnumerable(Of T)
Type Parameters
- T
The type of the data instances contained in the list.
- Inheritance
-
PageableList<T>
- Implements
Remarks
FirstId and LastId can be used as inputs into methods that list items to retrieve additional items before or after the current page's view.
Properties
Data |
The requested list of items. |
FirstId |
The first ID represented in this list. |
HasMore |
A value indicating whether there are additional values available not captured in this list. |
Item[Int32] |
Gets the data item at the specified index. |
LastId |
The last ID represented in this list. |
Methods
GetEnumerator() |
Returns an enumerator that iterates through the collection. |
Explicit Interface Implementations
IEnumerable.GetEnumerator() |
Returns an enumerator that iterates through a collection. |
Applies to
Azure SDK for .NET