The InstancesPage Entity

Instances Page

Catalytic.SDK.Entities.InstancesPage

The InstancesPage class represents a page of Instances, usually returned from the Instances.Find() method.

Instance Properties

NameTypeDescription
InstancesICollection<Instance>The Instances included in this page of results
NextPageOptionsPagingOptionsOptions to pass into Instances.Find() to fetch the next page of results

IResultsPage Properties

Like every results page, InstancesPage implements Catalytic.Sdk.Entities.IResultsPage<T> which provides the following properties. This can be helpful if you are building generic functionality for result pages.

NameTypeDescription
ItemsIEnumerable<Instance>The Instances included in this page of results
NextPageOptionsPagingOptionsOptions to pass into Instances.Find() to fetch the next page of results
CollectionNamestringThe name of the items. In this case, "Instances"