Table of Contents

Interface IRequestableCollection

Namespace
PnP.Core.Model
Assembly
PnP.Core.dll

Defines the very basic interface for every collection that is somehow requestable through an external querying system

public interface IRequestableCollection

Properties

Length

Returns the size of the collection

int Length { get; }

Property Value

int

Requested

Was this collection requested, a collection with 0 items and Requested == false was never loaded

bool Requested { get; set; }

Property Value

bool

RequestedItems

Represents the items already requested from the back-end service

IEnumerable RequestedItems { get; }

Property Value

IEnumerable

Methods

Clear()

Clears the collection allowing it to be freshly loaded again

void Clear()