Class PagedList<T>
An object that contains paginated list of the generic type T.
Inheritance
System.Object
PagedList<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Microsoft.Graph.StatefulClient
Assembly: Microsoft.Graph.StatefulClient.dll
Syntax
public class PagedList<T>
Type Parameters
Name | Description |
---|---|
T | The type of Paged List. |
Properties
View SourceAdditionalData
Gets or sets the additional data.
Declaration
[JsonExtensionData(ReadData = true)]
public IDictionary<string, object> AdditionalData { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Value
Gets or sets the value in the current page of the list.
Declaration
public IList<T> Value { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<T> |