Interface IRequestableCollection
Defines the very basic interface for every collection that is somehow requestable through an external querying system
Namespace: PnP.Core.Model
Assembly: PnP.Core.dll
Syntax
public interface IRequestableCollection
Properties
Length
Returns the size of the collection
Declaration
int Length { get; }
Property Value
System.Int32
|
Requested
Was this collection requested, a collection with 0 items and Requested == false was never loaded
Declaration
bool Requested { get; set; }
Property Value
System.Boolean
|
RequestedItems
Represents the items already requested from the back-end service
Declaration
Collections.IEnumerable RequestedItems { get; }
Property Value
System.Collections.IEnumerable
|
Methods
Clear()
Clears the collection allowing it to be freshly loaded again
Declaration
void Clear()