Interface IRequestableCollection
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
Requested
Was this collection requested, a collection with 0 items and Requested == false was never loaded
bool Requested { get; set; }
Property Value
RequestedItems
Represents the items already requested from the back-end service
IEnumerable RequestedItems { get; }
Property Value
Methods
Clear()
Clears the collection allowing it to be freshly loaded again
void Clear()