2 instantiations of SearchResponse
System.DirectoryServices.Protocols (2)
System\DirectoryServices\Protocols\ldap\LdapConnection.cs (2)
1489
response = new
SearchResponse
(responseDn, responseControl, (ResultCode)resultError, responseMessage, responseReferral);
1896
response = new
SearchResponse
(null, null, (ResultCode)error, OperationErrorMappings.MapResultCode(error), null);
14 references to SearchResponse
Microsoft.AspNetCore.Authentication.Negotiate (4)
Internal\LdapAdapter.cs (4)
48
var
searchResponse = (
SearchResponse
)await Task<DirectoryResponse>.Factory.FromAsync(
107
var
searchResponse = (
SearchResponse
)connection.SendRequest(searchRequest);
System.DirectoryServices.Protocols (10)
System\DirectoryServices\Protocols\ldap\LdapAsyncResult.cs (1)
82
internal
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)
141
SearchResponse
response = (
SearchResponse
)vt.GetAwaiter().GetResult();
178
SearchResponse
response = (
SearchResponse
)directoryOperationException.Response;
311
private static void AddResult(
SearchResponse
partialResults,
SearchResponse
newResult)