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