UserGroupManagerGetUserObjectsCountV2 Method

Return the number of user objects (including local users, domain users and optionally domain groups), optionally matching given filter.

Definition

Namespace: FileHold.UserRoleManager
Assembly: FileHold.UserRoleManager (in FileHold.UserRoleManager.dll) Version: 17.1.0.0
C#
[WebMethodAttribute(Description = "Return the number of user objects (including local users, domain users and optionally domain groups), optionally matching given filter.")]
public int GetUserObjectsCountV2(
	string startsWith,
	string name,
	string email,
	bool withDomainGroups
)

Parameters

startsWith  String
If not null or empty, either the first name or last name must start with given string (for example, first letter).
name  String
If not null or empty, the full name, first name or last name must exactly match the given string.
email  String
If not null or empty, the email address of the user must exactly match the given string.
withDomainGroups  Boolean
If true, domain groups are returned.

Return Value

Int32

See Also