IPagedList Interface
Namespace: PTS.Collections
Assembly: PTS.Collections.dll
Syntax
public interface IPagedList : IList, ICollection, IEnumerable
Properties
PageCount
Gets or sets the pages count.
Declaration
int PageCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The pages count. |
PageNumber
Gets or sets the page number.
Declaration
int PageNumber { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The page number. |
PageSize
Gets or sets the size of the page.
Declaration
int PageSize { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The size of the page. |
TotalCount
Gets or sets the total count.
Declaration
int TotalCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The total count. |
Inherited Members
System.Collections.IList.Add(System.Object)
System.Collections.IList.Clear()
System.Collections.IList.Contains(System.Object)
System.Collections.IList.IndexOf(System.Object)
System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.IList.Remove(System.Object)
System.Collections.IList.RemoveAt(System.Int32)
System.Collections.IList.IsFixedSize
System.Collections.IList.IsReadOnly
System.Collections.IList.Item[System.Int32]
System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ICollection.Count
System.Collections.ICollection.IsSynchronized
System.Collections.ICollection.SyncRoot
System.Collections.IEnumerable.GetEnumerator()