Class PagedList<T>
An object that contains paginated list of
the generic type T.
Assembly: Microsoft.Graph.Communications.Client.dll
Syntax
public class PagedList<T> : IPagedList<T>, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
Name |
Description |
T |
The type of Paged List.
|
Constructors
PagedList()
Declaration
Properties
AdditionalData
Gets or sets the additional data.
Declaration
public IDictionary<string, object> AdditionalData { get; set; }
Property Value
Count
Declaration
public int Count { get; }
Property Value
Item[Int32]
Declaration
public T this[int index] { get; }
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Property Value
NextLinkUrl
Gets the next link URL taken from @odata.nextLink.
Declaration
public Uri NextLinkUrl { get; }
Property Value
Value
Gets or sets the value in the current page of the list.
Declaration
public IList<T> Value { get; set; }
Property Value
Type |
Description |
IList<T> |
|
Methods
GetEnumerator()
Declaration
public IEnumerator<T> GetEnumerator()
Returns
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Implements