I am currently getting a list of groups a user is a member of using the following code:

SPUser user = SPContext.Current.Web.CurrentUser;
var groupNames = (from SPGroup userGroup in user.Groups select userGroup.Name).ToList();

What I now need to do, is itterate through each SPGroup returning any child groups. Does anyone know how I can achieve this?

Regards

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I think a SPGroup cannot have children that are SPGroup. An SPGroup has chilren that are SPUser. But a SPUser can be a domain group (IsDomainGroup property: http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spuser.isdomaingroup.aspx). Which means that domain user and groups are kept as SPUser objects.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.