dotnet/runtime
Ver no GitHubBug System.DirectoryServices.DirectorySearcher
Open
#59.756 aberto em 29 de set. de 2021
area-System.DirectoryServiceshelp wantedtest-enhancement
Métricas do repositório
- Stars
- (17.886 stars)
- Métricas de merge de PR
- (Mesclagem média 12d 11h) (661 fundiu PRs em 30d)
Description
The field: internal SearchResultCollection? searchResult;
was never set. In older versions of the lib, the field was set in FindAll() method:
SearchResultCollection resultCollection = new SearchResultCollection(root, hSearchResult, strArray, this);
this.searchResult = resultCollection;
return resultCollection;
Now:
return new SearchResultCollection(clonedRoot, resultsHandle, properties, this);
As result impossible to retrieve DirsyncCookie.