2 writes to _response
System.DirectoryServices.Protocols (2)
System\DirectoryServices\Protocols\ldap\LdapPartialResultsProcessor.cs (2)
165asyncResult._response = response; 185asyncResult._response = response;
25 references to _response
System.DirectoryServices.Protocols (25)
System\DirectoryServices\Protocols\ldap\LdapPartialResultsProcessor.cs (25)
117if (asyncResult._response != null && (asyncResult._response.Entries.Count > 0 || asyncResult._response.References.Count > 0)) 159if (asyncResult._response != null) 161AddResult(asyncResult._response, response); 179if (asyncResult._response != null) 181AddResult(asyncResult._response, response); 189directoryOperationException.Response = asyncResult._response; 193if (asyncResult._response != null) 196if (asyncResult._response.Entries != null) 198for (int i = 0; i < asyncResult._response.Entries.Count; i++) 200ldapException.PartialResults.Add(asyncResult._response.Entries[i]); 205if (asyncResult._response.References != null) 207for (int i = 0; i < asyncResult._response.References.Count; i++) 209ldapException.PartialResults.Add(asyncResult._response.References[i]); 260if (asyncResult._response != null) 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(); 272if (asyncResult._response.References != null) 274for (int i = 0; i < asyncResult._response.References.Count; i++) 276collection.Add(asyncResult._response.References[i]); 279asyncResult._response.References.Clear(); 306return asyncResult._response;