London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Class Pageable<T>

A generic pageable list used as a view data model.

Inheritance
System.Object
Pageable<T>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Shell.Web.Mvc.Html
Assembly: EPiServer.Shell.dll
Version: 10.10.4
Syntax
public class Pageable<T>
Type Parameters
Name Description
T

The type of objects that will be contained in the Items collection

Constructors

Pageable()

Declaration
public Pageable()

Properties

Items

A list of items.

Declaration
public IEnumerable<T> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<T>

Pages

The Pager responsible for handling the paging.

Declaration
public Pager Pages { get; set; }
Property Value
Type Description
Pager

Extension Methods