The UsersPage Entity

Users Page

Catalytic.SDK.Entities.UsersPage

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

Instance Properties

NameTypeDescription
UserICollection<User>The Users included in this page of results
NextPageOptionsPagingOptionsOptions to pass into Users.Find() to fetch the next page of results

IResultsPage Properties

Like every results page, UsersPage 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<User>The Users included in this page of results
NextPageOptionsPagingOptionsOptions to pass into Users.Find() to fetch the next page of results
CollectionNamestringThe name of the items. In this case, "Users"