Open this page in the API Guide

IGroupMembershipProvider.GetMembers Method

Retrieves the members of a group. There is an option indicating whether or not to include the inherited members.

Namespace:  Dundas.BI.AccountServices.Extensibility
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
void GetMembers(
	Guid groupId,
	bool includeInherited,
	out IDictionary<Guid, bool> groupMembers,
	out IDictionary<Guid, bool> accountMembers
)

Parameters

groupId
Type: System.Guid
ID of the group.
includeInherited
Type: System.Boolean
Is the inherited members included.
groupMembers
Type: System.Collections.Generic.IDictionary<Guid, Boolean>
The sub group of this group.
accountMembers
Type: System.Collections.Generic.IDictionary<Guid, Boolean>
The account members of this group.
See Also