29 references to LdapOperation
System.DirectoryServices.Protocols (29)
System\DirectoryServices\Protocols\ldap\LdapConnection.cs (28)
17
internal delegate DirectoryResponse GetLdapResponseCallback(int messageId,
LdapOperation
operation, ResultAll resultType, TimeSpan requestTimeout, bool exceptionOnTimeOut);
213
LdapOperation
operation =
LdapOperation
.LdapSearch;
216
operation =
LdapOperation
.LdapDelete;
220
operation =
LdapOperation
.LdapAdd;
224
operation =
LdapOperation
.LdapModify;
228
operation =
LdapOperation
.LdapSearch;
232
operation =
LdapOperation
.LdapModifyDn;
236
operation =
LdapOperation
.LdapCompare;
240
operation =
LdapOperation
.LdapExtendedRequest;
293
LdapOperation
operation =
LdapOperation
.LdapSearch;
296
operation =
LdapOperation
.LdapDelete;
300
operation =
LdapOperation
.LdapAdd;
304
operation =
LdapOperation
.LdapModify;
308
operation =
LdapOperation
.LdapSearch;
312
operation =
LdapOperation
.LdapModifyDn;
316
operation =
LdapOperation
.LdapCompare;
320
operation =
LdapOperation
.LdapExtendedRequest;
1350
internal async ValueTask<DirectoryResponse> ConstructResponseAsync(int messageId,
LdapOperation
operation, ResultAll resultType, TimeSpan requestTimeOut, bool exceptionOnTimeOut, bool sync)
1868
private DirectoryException ConstructException(int error,
LdapOperation
operation)
1874
if (operation ==
LdapOperation
.LdapAdd)
1878
else if (operation ==
LdapOperation
.LdapModify)
1882
else if (operation ==
LdapOperation
.LdapDelete)
1886
else if (operation ==
LdapOperation
.LdapModifyDn)
1890
else if (operation ==
LdapOperation
.LdapCompare)
1894
else if (operation ==
LdapOperation
.LdapSearch)
1898
else if (operation ==
LdapOperation
.LdapExtendedRequest)
System\DirectoryServices\Protocols\ldap\LdapPartialResultsProcessor.cs (1)
139
ValueTask<DirectoryResponse> vt = connection.ConstructResponseAsync(asyncResult._messageID,
LdapOperation
.LdapSearch, resultType, asyncResult._requestTimeout, false, sync: true);