31 references to GroupScope
System.DirectoryServices.AccountManagement (31)
System\DirectoryServices\AccountManagement\AD\ADDNLinkedAttrSet.cs (1)
729
_foreignGroups[0].GroupScope !=
GroupScope
.Global)
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (1)
1667
g.GroupScope !=
GroupScope
.Global)
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_LoadStore.cs (9)
1046
GroupScope
groupType =
GroupScope
.Universal;
1049
groupType =
GroupScope
.Global;
1051
groupType =
GroupScope
.Local;
1442
GroupScope
groupType = (
GroupScope
)p.GetValueForProperty(propertyName);
1450
if (groupType ==
GroupScope
.Local)
1454
else if (groupType ==
GroupScope
.Global)
1460
Debug.Assert(groupType ==
GroupScope
.Universal);
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_Query.cs (5)
750
GroupScope
value2 = (
GroupScope
)filter.Value;
754
case
GroupScope
.Local:
758
case
GroupScope
.Global:
764
Debug.Assert(value2 ==
GroupScope
.Universal);
System\DirectoryServices\AccountManagement\Group.cs (6)
86
private
GroupScope
_groupScope = System.DirectoryServices.AccountManagement.
GroupScope
.Local; // the actual property value
89
public Nullable<
GroupScope
> GroupScope
114
return HandleGet<
GroupScope
>(ref _groupScope, PropertyNames.GroupGroupScope, ref _groupScopeChanged);
127
HandleSet<
GroupScope
>(ref _groupScope, value.Value, ref _groupScopeChanged, PropertyNames.GroupGroupScope);
267
_groupScope = (
GroupScope
)value;
System\DirectoryServices\AccountManagement\SAM\SAMQuerySet.cs (3)
652
GroupScope
valueToMatch = (
GroupScope
)filter.Value;
655
if (valueToMatch ==
GroupScope
.Local)
System\DirectoryServices\AccountManagement\SAM\SAMStoreCtx_LoadStore.cs (4)
840
p.LoadValueIntoProperty(propertyName,
GroupScope
.Local);
971
GroupScope
value = (
GroupScope
)p.GetValueForProperty(propertyName);
973
if (value !=
GroupScope
.Local)
System\DirectoryServices\AccountManagement\StoreCtx.cs (2)
415
else if (value is
GroupScope
)
417
((FilterBase)filter).Value = (
GroupScope
)value;