SearchMembersRequest
The SearchMembersRequest class represents a request to search for members in the authorization system with specified filtering criteria.
This class encapsulates search parameters for finding members, including text search, membership status, and entity status conditions. It provides both a full constructor and a simplified constructor with default status condition.
Properties
| Name | Description |
|---|---|
| Text | Gets the search text to filter members. |
| IsMemberOf | Gets a value indicating whether to search for members that belong to a specific group or entity. |
| StatusCondition | Gets the status condition used to filter members by their entity status. |
Constructors
| Name | Description |
|---|---|
| SearchMembersRequest() | Initializes a new instance of the SearchMembersRequest class. |
| SearchMembersRequest(text, isMemberOf, statusCondition) | Initializes a new instance of the SearchMembersRequest class with the specified search criteria. |
| SearchMembersRequest(text, isMemberOf) | Initializes a new instance of the SearchMembersRequest class with the specified search criteria and default status condition. |