Net::LDAP::Search - Object returned by Net::LDAP search method |
Net::LDAP::Search - Object returned by Net::LDAP search method
use Net::LDAP;
$mesg = $ldap->search( @search_args );
@entries = $mesg->entries;
A Net::LDAP::Search object is returned from the search method of a the Net::LDAP manpage object. It is a container object which holds the results of the search.
Net::LDAP::Search inherits from the Net::LDAP::Message manpage, and so supports all methods defined in the Net::LDAP::Message manpage.
This method will block until the whole search request has finished.
This method will block until the whole search request has finished.
undef
will be returned.
This method will block until the search request has returned enough entries.
This method will block until the whole search request has finished.
undef
is returned.
This call will block if the list is empty, until the server returns another entry.
The sorting is done on the client side using Perl's alphanumerical
sort operator cmp
.
The sorting is done on the client side using Perl's alphanumerical
sort operator cmp
.
undef
is
returned.
This call will block if the list is empty, until the server returns another entry.
the Net::LDAP manpage, the Net::LDAP::Message manpage, the Net::LDAP::Entry manpage, the Net::LDAP::Reference manpage
This document is based on a document originally written by Russell Fulton <r.fulton@auckland.ac.nz>.
Graham Barr <gbarr@pobox.com>
Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org>.
Copyright (c) 1997-2004 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Net::LDAP::Search - Object returned by Net::LDAP search method |