1 write to Entries
System.DirectoryServices.Protocols (1)
System\DirectoryServices\Protocols\ldap\LdapConnection.cs (1)
1530
((SearchResponse)response).
Entries
= searchResultEntries;
18 references to Entries
Microsoft.AspNetCore.Authentication.Negotiate (6)
Internal\LdapAdapter.cs (6)
55
if (searchResponse.
Entries
.Count > 0)
57
if (searchResponse.
Entries
.Count > 1 && logger.IsEnabled(LogLevel.Warning))
62
var userFound = searchResponse.
Entries
[0]; //Get the object that was found on ldap
109
if (searchResponse.
Entries
.Count > 0)
111
if (searchResponse.
Entries
.Count > 1 && logger.IsEnabled(LogLevel.Warning))
116
var group = searchResponse.
Entries
[0]; // Get the object that was found on ldap
System.DirectoryServices.Protocols (12)
System\DirectoryServices\Protocols\ldap\LdapPartialResultsProcessor.cs (12)
117
if (asyncResult._response != null && (asyncResult._response.
Entries
.Count > 0 || asyncResult._response.References.Count > 0))
196
if (asyncResult._response.
Entries
!= null)
198
for (int i = 0; i < asyncResult._response.
Entries
.Count; i++)
200
ldapException.PartialResults.Add(asyncResult._response.
Entries
[i]);
262
if (asyncResult._response.
Entries
!= null)
264
for (int i = 0; i < asyncResult._response.
Entries
.Count; i++)
266
collection.Add(asyncResult._response.
Entries
[i]);
269
asyncResult._response.
Entries
.Clear();
318
if (newResult.
Entries
!= null)
320
for (int i = 0; i < newResult.
Entries
.Count; i++)
322
partialResults.
Entries
.Add(newResult.
Entries
[i]);