Open this page in the API Guide

IGroupService.GetGroupMembershipForGroup Method

Retrieves the groups to which the specified group belongs.

Namespace:  Dundas.BI.AccountServices
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
IDictionary<Guid, bool> GetGroupMembershipForGroup(
	Guid groupId,
	bool includeInherited
)

Parameters

groupId
Type: System.Guid
ID of the group.
includeInherited
Type: System.Boolean
If set to true, include the groups which indirectly contain the specified group due to that group's membership in another group.

Return Value

Type: IDictionary<Guid, Boolean>
A dictionary where the key is the ID of the group containing the specified group. The value is true if the specified group is an explicit member of the group; otherwise, false.
Exceptions
ExceptionCondition
ArgumentExceptiongroupId is Empty.
NotFoundExceptionThe group with the specified ID does not exist.
NoPrivilegeException

The caller does not have system administration privileges.

-or-

The group is associated with a project, and the caller does not have administration privileges for that project.

-or-

The group is associated with a tenant, and the caller does not have administration privileges for that tenant.

InvalidSessionExceptionThe caller context is not associated with a valid session.
Remarks
If includeInherited is false, the value of each item in the dictionary will be true.
See Also