Interface IPagedList<T>
The paged list interface.
Inherited Members
Namespace: Microsoft.Graph.Communications.Client
Assembly: Microsoft.Graph.Communications.Client.dll
Syntax
public interface IPagedList<T> : IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
Name | Description |
---|---|
T | The type of object to page. |
Properties
AdditionalData
Gets or sets the additional data.
Declaration
IDictionary<string, object> AdditionalData { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<String, Object> |
NextLinkUrl
Gets the next link URL taken from @odata.nextLink.
Declaration
Uri NextLinkUrl { get; }
Property Value
Type | Description |
---|---|
Uri |
Value
Gets or sets the value in the current page of the list.
Declaration
IList<T> Value { get; set; }
Property Value
Type | Description |
---|---|
IList<T> |
See Also
IList<T>