Class PagedList<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: WaCore.Crud.Utils
Assembly: WaCore.Crud.Utils.dll
Syntax
public class PagedList<T> : IPagedList<T>, IEnumerable<T>, IEnumerable
Type Parameters
Name | Description |
---|---|
T |
Constructors
| Improve this Doc View SourcePagedList(IList<T>, Int32, Int32, Nullable<Int32>)
Declaration
public PagedList(IList<T> list, int totalCount, int offset, int ? limit)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IList<T> | list | |
System.Int32 | totalCount | |
System.Int32 | offset | |
System.Nullable<System.Int32> | limit |
Properties
| Improve this Doc View SourceLimit
Declaration
public int ? Limit { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
List
Declaration
public IList<T> List { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<T> |
Offset
Declaration
public int Offset { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
TotalCount
Declaration
public int TotalCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceGetEnumerator()
Declaration
public IEnumerator<T> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<T> |
Explicit Interface Implementations
| Improve this Doc View SourceIEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable