Novell.Directory.Ldap.LdapConnection.SendRequest C# (CSharp) Метод

SendRequest() публичный Метод

Sends an Ldap request to a directory server. The specified the Ldap request is sent to the directory server associated with this connection using default constraints. An Ldap request object is a subclass {@link LdapMessage} with the operation type set to one of the request types. You can build a request by using the request classes found in this package You should note that, since Ldap requests sent to the server using sendRequest are asynchronous, automatic referral following does not apply to these requests.
LdapException A general exception which includes an error /// message and an Ldap error code. /// ///
public SendRequest ( LdapMessage request, LdapMessageQueue queue ) : LdapMessageQueue
request LdapMessage The Ldap request to send to the directory server. ///
queue LdapMessageQueue The queue for messages returned from a server in /// response to this request. If it is null, a /// queue object is created internally. ///
Результат LdapMessageQueue
        public virtual LdapMessageQueue SendRequest(LdapMessage request, LdapMessageQueue queue)
        {
            return SendRequest(request, queue, null);
        }

Same methods

LdapConnection::SendRequest ( LdapMessage request, LdapMessageQueue queue, LdapConstraints cons ) : LdapMessageQueue