Show / Hide Table of Contents

    Class PagedList<T>

    An object that contains paginated list of the generic type T.

    Inheritance
    Object
    PagedList<T>
    Implements
    IPagedList<T>
    IReadOnlyList<T>
    IReadOnlyCollection<T>
    IEnumerable<T>
    IEnumerable
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Microsoft.Graph.Communications.Client
    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
    public PagedList()

    Properties

    AdditionalData

    Gets or sets the additional data.

    Declaration
    public IDictionary<string, object> AdditionalData { get; set; }
    Property Value
    Type Description
    IDictionary<String, Object>

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    Int32

    Item[Int32]

    Declaration
    public T this[int index] { get; }
    Parameters
    Type Name Description
    Int32 index
    Property Value
    Type Description
    T

    NextLinkUrl

    Gets the next link URL taken from @odata.nextLink.

    Declaration
    public Uri NextLinkUrl { get; }
    Property Value
    Type Description
    Uri

    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
    Type Description
    IEnumerator<T>

    Explicit Interface Implementations

    IEnumerable.GetEnumerator()

    Declaration
    IEnumerator IEnumerable.GetEnumerator()
    Returns
    Type Description
    IEnumerator

    Implements

    IPagedList<T>
    System.Collections.Generic.IReadOnlyList<T>
    System.Collections.Generic.IReadOnlyCollection<T>
    System.Collections.Generic.IEnumerable<T>
    System.Collections.IEnumerable
    Back to top Copyright (c) Microsoft Corporation. All rights reserved.