IGroupServiceGetGroups Method

Retrieves a list of groups having the specified IDs.

Namespace:  Dundas.BI.AccountServices
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
IDictionary<Guid, Group?> GetGroups(
	ICollection<Guid> groupIds
)

Parameters

groupIds
Type: System.Collections.GenericICollectionGuid
The IDs of the groups to retrieve.

Return Value

Type: IDictionaryGuid, Group
A dictionary (keyed by group ID) containing the corresponding Group or if the group does not exist.
Exceptions
ExceptionCondition
ArgumentNullExceptiongroupIds is .
NoPrivilegeException

The caller does not have system administration privileges.

-or-

One or more of the specified groups are associated with a tenant, and the caller does not have administration privileges for that tenant.

-or-

One or more of the specified groups are associated with a project, and the caller does not have administration privileges for that project.

InvalidSessionExceptionThe caller context is not associated with a valid session.
See Also