20 references to Subtree
System.DirectoryServices (20)
System\DirectoryServices\ActiveDirectory\ActiveDirectorySite.cs (5)
908SearchScope.Subtree, 999SearchScope.Subtree); 1186SearchScope.Subtree); 1254SearchScope.Subtree); 1369SearchScope.Subtree);
System\DirectoryServices\ActiveDirectory\ConfigSet.cs (1)
428ADSearcher searcher = new ADSearcher(rootEntry, filter, propertiesToLoad, SearchScope.Subtree, false /*not paged search*/, false /*no cached results*/);
System\DirectoryServices\ActiveDirectory\DirectoryServer.cs (1)
812SearchScope.Subtree);
System\DirectoryServices\ActiveDirectory\Utils.cs (4)
316ADSearcher searcher = new ADSearcher(serversEntry, filter, propertiesToLoad, SearchScope.Subtree, true /* paged search */, true /* cache results */); 375ADSearcher searcher = new ADSearcher(serversEntry, filter, propertiesToLoad, SearchScope.Subtree, true /* paged search */, true /* cache results */); 896SearchScope.Subtree, 1456ADSearcher searcher2 = new ADSearcher(searchRootEntry, filter2, Array.Empty<string>(), SearchScope.Subtree);
System\DirectoryServices\DirectorySearcher.cs (9)
26private SearchScope _scope = System.DirectoryServices.SearchScope.Subtree; 56public DirectorySearcher() : this(null, defaultFilter, null, System.DirectoryServices.SearchScope.Subtree) 66public DirectorySearcher(DirectoryEntry? searchRoot) : this(searchRoot, defaultFilter, null, System.DirectoryServices.SearchScope.Subtree) 76public DirectorySearcher(DirectoryEntry? searchRoot, string? filter) : this(searchRoot, filter, null, System.DirectoryServices.SearchScope.Subtree) 86public DirectorySearcher(DirectoryEntry? searchRoot, string? filter, string[]? propertiesToLoad) : this(searchRoot, filter, propertiesToLoad, System.DirectoryServices.SearchScope.Subtree) 96public DirectorySearcher(string? filter) : this(null, filter, null, System.DirectoryServices.SearchScope.Subtree) 106public DirectorySearcher(string? filter, string[]? propertiesToLoad) : this(null, filter, propertiesToLoad, System.DirectoryServices.SearchScope.Subtree) 259[DefaultValue(SearchScope.Subtree)] 265if (value < SearchScope.Base || value > SearchScope.Subtree)