Table of Contents

Class PagingList<T>

Namespace
PrivMX.Endpoint.Core.Models
Assembly
PrivMX.Endpoint.dll

Represents a resulting list of items used in lists methods.

public class PagingList<T>

Type Parameters

T

Resource type.

Inheritance
PagingList<T>
Inherited Members

Properties

ReadItems

Resulting items listed according to the paging parameters passed to a method.

public List<T> ReadItems { get; set; }

Property Value

List<T>

TotalAvailable

Total number of all items available to list.

public long TotalAvailable { get; set; }

Property Value

long