IGroupMembershipProviderGetMembers Method |
Retrieves the members of a group. There is an option indicating whether or not to include the inherited members.
Namespace: Dundas.BI.AccountServices.ExtensibilityAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
Syntaxvoid GetMembers(
Guid groupId,
bool includeInherited,
out IDictionary<Guid, bool> groupMembers,
out IDictionary<Guid, bool> accountMembers
)
Sub GetMembers (
groupId As Guid,
includeInherited As Boolean,
<OutAttribute> ByRef groupMembers As IDictionary(Of Guid, Boolean),
<OutAttribute> ByRef accountMembers As IDictionary(Of Guid, Boolean)
)
void GetMembers(
Guid groupId,
bool includeInherited,
[OutAttribute] IDictionary<Guid, bool>^% groupMembers,
[OutAttribute] IDictionary<Guid, bool>^% accountMembers
)
abstract GetMembers :
groupId : Guid *
includeInherited : bool *
groupMembers : IDictionary<Guid, bool> byref *
accountMembers : IDictionary<Guid, bool> byref -> unit Parameters
- groupId Guid
- ID of the group.
- includeInherited Boolean
- Is the inherited members included.
- groupMembers IDictionaryGuid, Boolean
- The sub group of this group.
- accountMembers IDictionaryGuid, Boolean
- The account members of this group.
See Also