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);
210
LdapOperation
operation =
LdapOperation
.LdapSearch;
213
operation =
LdapOperation
.LdapDelete;
217
operation =
LdapOperation
.LdapAdd;
221
operation =
LdapOperation
.LdapModify;
225
operation =
LdapOperation
.LdapSearch;
229
operation =
LdapOperation
.LdapModifyDn;
233
operation =
LdapOperation
.LdapCompare;
237
operation =
LdapOperation
.LdapExtendedRequest;
290
LdapOperation
operation =
LdapOperation
.LdapSearch;
293
operation =
LdapOperation
.LdapDelete;
297
operation =
LdapOperation
.LdapAdd;
301
operation =
LdapOperation
.LdapModify;
305
operation =
LdapOperation
.LdapSearch;
309
operation =
LdapOperation
.LdapModifyDn;
313
operation =
LdapOperation
.LdapCompare;
317
operation =
LdapOperation
.LdapExtendedRequest;
1344
internal async ValueTask<DirectoryResponse> ConstructResponseAsync(int messageId,
LdapOperation
operation, ResultAll resultType, TimeSpan requestTimeOut, bool exceptionOnTimeOut, bool sync)
1862
private DirectoryException ConstructException(int error,
LdapOperation
operation)
1868
if (operation ==
LdapOperation
.LdapAdd)
1872
else if (operation ==
LdapOperation
.LdapModify)
1876
else if (operation ==
LdapOperation
.LdapDelete)
1880
else if (operation ==
LdapOperation
.LdapModifyDn)
1884
else if (operation ==
LdapOperation
.LdapCompare)
1888
else if (operation ==
LdapOperation
.LdapSearch)
1892
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);