13 writes to Filter
System.DirectoryServices (1)
System\DirectoryServices\ActiveDirectory\ADSearcher.cs (1)
52set => _searcher.Filter = value;
System.DirectoryServices.AccountManagement (12)
System\DirectoryServices\AccountManagement\AD\ADAMStoreCtx.cs (1)
282dirSearcher.Filter = "(&(objectClass=classSchema)(systemAuxiliaryClass=" + ADUtils.EscapeRFC2254SpecialChars(auxClassName) + "))";
System\DirectoryServices\AccountManagement\AD\ADDNLinkedAttrSet.cs (2)
381ds.Filter = "(objectClass=*)"; 858ds.Filter = "(objectClass=*)";
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (7)
1114ds.Filter = ldapFilter.ToString(); 1291searchers[index].Filter = "(objectClass=*)"; 1444ds.Filter = "(objectSid=" + stringSid + ")"; 1513memberSearcher[0].Filter = "(&(objectClass=Group)(member=" + ADUtils.EscapeRFC2254SpecialChars(foreignPrincipal.DistinguishedName) + "))"; 1683dsMembers[0].Filter = "(objectClass=*)"; 1708ds.Filter = GetObjectClassPortion(typeof(Principal)) + "(primaryGroupId=" + groupRid.ToString(CultureInfo.InvariantCulture) + "))"; 1825ds.Filter = "(&(objectClass=foreignSecurityPrincipal)(objectSid=" + stringSid + "))";
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_LoadStore.cs (1)
636ds.Filter = ldapFilter.ToString();
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_Query.cs (1)
181ds.Filter = ldapFilter.ToString();
22 references to Filter
System.DirectoryServices (12)
System\DirectoryServices\ActiveDirectory\ADSearcher.cs (1)
51get => _searcher.Filter;
System\DirectoryServices\DirectorySearcher.cs (10)
54/// <see cref='System.DirectoryServices.DirectorySearcher.Filter'/>, <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/>, and <see cref='System.DirectoryServices.DirectorySearcher.SearchScope'/> set to their default values. 63/// <see cref='System.DirectoryServices.DirectorySearcher.Filter'/>, <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/>, and <see cref='System.DirectoryServices.DirectorySearcher.SearchScope'/> set to their default 74/// values, and <see cref='System.DirectoryServices.DirectorySearcher.SearchRoot'/> and <see cref='System.DirectoryServices.DirectorySearcher.Filter'/> set to the respective given values. 84/// value, and <see cref='System.DirectoryServices.DirectorySearcher.SearchRoot'/>, <see cref='System.DirectoryServices.DirectorySearcher.Filter'/>, and <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/> set to the respective given values. 94/// values, and <see cref='System.DirectoryServices.DirectorySearcher.Filter'/> set to the given value. 104/// values, and <see cref='System.DirectoryServices.DirectorySearcher.Filter'/> and <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/> set to the respective given values. 113/// value, and <see cref='System.DirectoryServices.DirectorySearcher.Filter'/>, <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/>, and <see cref='System.DirectoryServices.DirectorySearcher.SearchScope'/> set to the respective given values. 120/// Initializes a new instance of the <see cref='System.DirectoryServices.DirectorySearcher'/> class with the <see cref='System.DirectoryServices.DirectorySearcher.SearchRoot'/>, <see cref='System.DirectoryServices.DirectorySearcher.Filter'/>, <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/>, and <see cref='System.DirectoryServices.DirectorySearcher.SearchScope'/> properties set to the given 646adsSearch.ExecuteSearch(Filter, properties, properties.Length, out resultsHandle); 650adsSearch.ExecuteSearch(Filter, null, -1, out resultsHandle);
System\DirectoryServices\SearchResultCollection.cs (1)
33Filter = srch.Filter;
System.DirectoryServices.AccountManagement (10)
System\DirectoryServices\AccountManagement\AD\ADDNLinkedAttrSet.cs (3)
49(primaryGroupMembersSearcher != null ? primaryGroupMembersSearcher.Filter : "NULL"), 94(membersSearcher != null ? membersSearcher[0].Filter : "NULL"), 96(primaryGroupMembersSearcher != null ? primaryGroupMembersSearcher.Filter : "NULL"),
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (5)
1115GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADStoreCtx", "FindByDate: using LDAP filter {0}", ds.Filter); 1446GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADStoreCtx", "GetGroupsMemberOf(ctx): using LDAP filter {0}", ds.Filter); 1653GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADStoreCtx", "GetGroupMembership: using LDAP filter={0}", ds.Filter); 1829ds.Filter); 1900GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADStoreCtx", "IsMemberOfInStore: using LDAP filter {0}", ds.Filter);
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_LoadStore.cs (1)
637GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADStoreCtx", "FindPrincipalByIdentRefHelper: using LDAP filter {0}", ds.Filter);
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_Query.cs (1)
182GlobalDebug.WriteLineIf(GlobalDebug.Info, "ADStoreCtx", "PushFilterToNativeSearcher: using LDAP filter {0}", ds.Filter);