29 references to LdapOperation
System.DirectoryServices.Protocols (29)
System\DirectoryServices\Protocols\ldap\LdapConnection.cs (28)
17internal delegate DirectoryResponse GetLdapResponseCallback(int messageId, LdapOperation operation, ResultAll resultType, TimeSpan requestTimeout, bool exceptionOnTimeOut); 210LdapOperation operation = LdapOperation.LdapSearch; 213operation = LdapOperation.LdapDelete; 217operation = LdapOperation.LdapAdd; 221operation = LdapOperation.LdapModify; 225operation = LdapOperation.LdapSearch; 229operation = LdapOperation.LdapModifyDn; 233operation = LdapOperation.LdapCompare; 237operation = LdapOperation.LdapExtendedRequest; 290LdapOperation operation = LdapOperation.LdapSearch; 293operation = LdapOperation.LdapDelete; 297operation = LdapOperation.LdapAdd; 301operation = LdapOperation.LdapModify; 305operation = LdapOperation.LdapSearch; 309operation = LdapOperation.LdapModifyDn; 313operation = LdapOperation.LdapCompare; 317operation = LdapOperation.LdapExtendedRequest; 1344internal async ValueTask<DirectoryResponse> ConstructResponseAsync(int messageId, LdapOperation operation, ResultAll resultType, TimeSpan requestTimeOut, bool exceptionOnTimeOut, bool sync) 1862private DirectoryException ConstructException(int error, LdapOperation operation) 1868if (operation == LdapOperation.LdapAdd) 1872else if (operation == LdapOperation.LdapModify) 1876else if (operation == LdapOperation.LdapDelete) 1880else if (operation == LdapOperation.LdapModifyDn) 1884else if (operation == LdapOperation.LdapCompare) 1888else if (operation == LdapOperation.LdapSearch) 1892else if (operation == LdapOperation.LdapExtendedRequest)
System\DirectoryServices\Protocols\ldap\LdapPartialResultsProcessor.cs (1)
139ValueTask<DirectoryResponse> vt = connection.ConstructResponseAsync(asyncResult._messageID, LdapOperation.LdapSearch, resultType, asyncResult._requestTimeout, false, sync: true);