| ActiveDirectoryGroupType Enumeration |
GroupType enumerates the type of group objects in Active Directory.
Namespace:
Galactic.ActiveDirectory
Assembly:
Galactic.ActiveDirectory (in Galactic.ActiveDirectory.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax [FlagsAttribute]
public enum GroupType
<FlagsAttribute>
Public Enumeration GroupType
[FlagsAttribute]
public enum class GroupType
[<FlagsAttribute>]
type GroupType
Members
| Member name | Value | Description |
---|
| Universal | 8 |
Specifies a group that can contain accounts from any domain, global
groups from any domain, and other universal groups. This type of group
cannot contain domain local groups.
|
| DomainLocal | 4 |
Specifies a group that can contain accounts from any domain, other domain
local groups from the same domain, global groups from any domain, and
universal groups. This type of group should not be included in access-control
lists of resouces in other domains. This type of group is intended for use
with the LDAP provider.
|
| Global | 2 |
Specifies a group that can contain accounts from the domain and other global
groups from the same domain. This type of group can be exported to a different
domain.
|
| Security | 2147483648 |
Specifies a group that is security enabled. This group can be used to apply an
access-control list on an Active Directory object or a file system.
|
See Also