2 instantiations of SearchResponse
System.DirectoryServices.Protocols (2)
System\DirectoryServices\Protocols\ldap\LdapConnection.cs (2)
1489response = new SearchResponse(responseDn, responseControl, (ResultCode)resultError, responseMessage, responseReferral); 1896response = new SearchResponse(null, null, (ResultCode)error, OperationErrorMappings.MapResultCode(error), null);
14 references to SearchResponse
Microsoft.AspNetCore.Authentication.Negotiate (4)
Internal\LdapAdapter.cs (4)
48var searchResponse = (SearchResponse)await Task<DirectoryResponse>.Factory.FromAsync( 107var searchResponse = (SearchResponse)connection.SendRequest(searchRequest);
System.DirectoryServices.Protocols (10)
System\DirectoryServices\Protocols\ldap\LdapAsyncResult.cs (1)
82internal SearchResponse _response;
System\DirectoryServices\Protocols\ldap\LdapConnection.cs (3)
1494((SearchResponse)response).searchDone = true; 1530((SearchResponse)response).Entries = searchResultEntries; 1531((SearchResponse)response).References = searchResultReferences;
System\DirectoryServices\Protocols\ldap\LdapPartialResultsProcessor.cs (6)
141SearchResponse response = (SearchResponse)vt.GetAwaiter().GetResult(); 178SearchResponse response = (SearchResponse)directoryOperationException.Response; 311private static void AddResult(SearchResponse partialResults, SearchResponse newResult)