The UsersPage Entity
Users Page
Catalytic.SDK.Entities.UsersPage
The UsersPage
class represents a page of User
s, usually returned from the Users.Find()
method.
Instance Properties
Name | Type | Description |
---|---|---|
User | ICollection<User> | The Users included in this page of results |
NextPageOptions | PagingOptions | Options 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.
Name | Type | Description |
---|---|---|
Items | IEnumerable<User> | The User s included in this page of results |
NextPageOptions | PagingOptions | Options to pass into Users.Find() to fetch the next page of results |
CollectionName | string | The name of the items. In this case, "Users" |
Updated about 4 years ago