Net::LDAP::Search(3) | User Contributed Perl Documentation | Net::LDAP::Search(3) |
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 Net::LDAP object. It is a container object which holds the results of the search.
Net::LDAP::Search inherits from Net::LDAP::Message, and so supports all methods defined in Net::LDAP::Message.
This method will block until the whole search request has finished.
This method will block until the whole search request has finished.
This method will block until the search request has returned enough entries.
This method will block until the whole search request has finished.
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".
This call will block if the list is empty, until the server returns another entry.
Net::LDAP, Net::LDAP::Message, Net::LDAP::Entry, Net::LDAP::Reference
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.
2015-04-08 | perl v5.34.0 |