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 (26.2.0.1000)
Syntax
IDictionary<Guid, Group?> GetGroups(
	ICollection<Guid> groupIds
)

Parameters

groupIds  ICollectionGuid
The IDs of the groups to retrieve.

Return Value

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