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)
55if (searchResponse.Entries.Count > 0) 57if (searchResponse.Entries.Count > 1 && logger.IsEnabled(LogLevel.Warning)) 62var userFound = searchResponse.Entries[0]; //Get the object that was found on ldap 109if (searchResponse.Entries.Count > 0) 111if (searchResponse.Entries.Count > 1 && logger.IsEnabled(LogLevel.Warning)) 116var group = searchResponse.Entries[0]; // Get the object that was found on ldap
System.DirectoryServices.Protocols (12)
System\DirectoryServices\Protocols\ldap\LdapPartialResultsProcessor.cs (12)
117if (asyncResult._response != null && (asyncResult._response.Entries.Count > 0 || asyncResult._response.References.Count > 0)) 196if (asyncResult._response.Entries != null) 198for (int i = 0; i < asyncResult._response.Entries.Count; i++) 200ldapException.PartialResults.Add(asyncResult._response.Entries[i]); 262if (asyncResult._response.Entries != null) 264for (int i = 0; i < asyncResult._response.Entries.Count; i++) 266collection.Add(asyncResult._response.Entries[i]); 269asyncResult._response.Entries.Clear(); 318if (newResult.Entries != null) 320for (int i = 0; i < newResult.Entries.Count; i++) 322partialResults.Entries.Add(newResult.Entries[i]);