InternalFindItemsGeneric<TItem extends Item> method
Future<ServiceResponseCollection<FindItemResponse<TItem> > >
InternalFindItemsGeneric<TItem extends Item>(
- SearchFilter searchFilter,
- ViewBase view,
- Grouping? groupBy
Implementation
Future<ServiceResponseCollection<FindItemResponse<TItem>>>
InternalFindItemsGeneric<TItem extends Item>(
SearchFilter searchFilter, ViewBase view, Grouping? groupBy) {
this.ThrowIfThisIsNew();
return this.Service.FindItemsGeneric<TItem>(
[this.Id],
searchFilter,
null,
/* queryString */
view,
groupBy,
ServiceErrorHandling.ThrowOnError);
}