I am using the below method of DirectoryEntry
I am trying to fetch the AuthorizationGroups using the invoke method. I used the below method
object obGroups = de.Invoke("Groups");
foreach (object ob in (IEnumerable)obGroups)
{
// name of group
obGpEntry.Name;
}
But this will not return all active directory groups. I need to get all Authorization Groups the user belongs to
Any idea which is the method name needs to be used for that