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); 213LdapOperation operation = LdapOperation.LdapSearch; 216operation = LdapOperation.LdapDelete; 220operation = LdapOperation.LdapAdd; 224operation = LdapOperation.LdapModify; 228operation = LdapOperation.LdapSearch; 232operation = LdapOperation.LdapModifyDn; 236operation = LdapOperation.LdapCompare; 240operation = LdapOperation.LdapExtendedRequest; 293LdapOperation operation = LdapOperation.LdapSearch; 296operation = LdapOperation.LdapDelete; 300operation = LdapOperation.LdapAdd; 304operation = LdapOperation.LdapModify; 308operation = LdapOperation.LdapSearch; 312operation = LdapOperation.LdapModifyDn; 316operation = LdapOperation.LdapCompare; 320operation = LdapOperation.LdapExtendedRequest; 1350internal async ValueTask<DirectoryResponse> ConstructResponseAsync(int messageId, LdapOperation operation, ResultAll resultType, TimeSpan requestTimeOut, bool exceptionOnTimeOut, bool sync) 1868private DirectoryException ConstructException(int error, LdapOperation operation) 1874if (operation == LdapOperation.LdapAdd) 1878else if (operation == LdapOperation.LdapModify) 1882else if (operation == LdapOperation.LdapDelete) 1886else if (operation == LdapOperation.LdapModifyDn) 1890else if (operation == LdapOperation.LdapCompare) 1894else if (operation == LdapOperation.LdapSearch) 1898else 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);