Class LoadObjectsCommandResult<T>
Result of a command which loads selection items for object selector.
public sealed class LoadObjectsCommandResult<T>
Type Parameters
T
Denotes a type of Value.
- Inheritance
-
objectLoadObjectsCommandResult<T>
- Extension Methods
Properties
NextPageAvailable
Returns true if there is more items than loaded.
public bool NextPageAvailable { get; set; }
Property Value
- bool
Objects
A collection of items which are presented to a user in the UI.
public IEnumerable<ObjectSelectorListItem<T>> Objects { get; set; }
Property Value
- IEnumerable<ObjectSelectorListItem<T>>