Returns a collection of principal objects that contains all the authorization groups of which this user is a member. This function only returns groups that are security groups; distribution groups are not returned.
Namespace:
System.DirectoryServices.AccountManagement
Assembly:
System.DirectoryServices.AccountManagement (in System.DirectoryServices.AccountManagement.dll)
Visual Basic (Declaration)
Public Function GetAuthorizationGroups As PrincipalSearchResult(Of Principal)
Dim instance As UserPrincipal
Dim returnValue As PrincipalSearchResult(Of Principal)
returnValue = instance.GetAuthorizationGroups()
public PrincipalSearchResult<Principal> GetAuthorizationGroups()
public:
PrincipalSearchResult<Principal^>^ GetAuthorizationGroups()
public function GetAuthorizationGroups() : PrincipalSearchResult<Principal>
| Exception | Condition |
|---|
| PrincipalOperationException | The attempt to retrieve authorization groups failed. |
| [T:System>NotSupportedException] | The retrieval of authorization groups is not supported by this operating system. |
This method searches all groups recursively and returns the groups in which the user is a member. The returned set may also include additional groups that system would consider the user a member of for authorization purposes.
The groups that are returned by this method may include groups from a different scope and store than the principal. For example, if the principal is an AD DS object that has a DN of “CN=SpecialGroups,DC=Fabrikam,DC=com, the returned set can contain groups that belong to the “CN=NormalGroups,DC=Fabrikam,DC=com.
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5
Reference
Other Resources