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 RangedItems<T>

Contains a collection of items and a description of the range of items.

Inheritance
System.Object
RangedItems<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.Services.Rest
Assembly: EPiServer.Shell.dll
Version: 10.10.4
Syntax
public class RangedItems<T>
Type Parameters
Name Description
T

Constructors

RangedItems()

Creates a new instance of the RangedItems<T> class.

Declaration
protected RangedItems()

RangedItems(IEnumerable<T>, ItemRange)

Creates a new instance of the RangedItems<T> class.

Declaration
public RangedItems(IEnumerable<T> items, ItemRange range)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<T> items

The items.

ItemRange range

The range describing the included items.

Properties

Items

Gets the included items.

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

Range

Gets the range describing the included items.

Declaration
public ItemRange Range { get; protected set; }
Property Value
Type Description
ItemRange

Extension Methods